我有支离破碎的职能,我需要在网站开放后打电话。
I am trying to open a weblink in an Iframe and after opening it I need to call the below function. So how do I do that?
我的职能是:
<script type="text/javascript">
$(document).ready(function(){
$("#<%=Button1.ClientID%>").click(function (event) {
$( #<%=TextBox1.ClientID%> ).change(function () {
$( #various3 ).attr( href , $(this).val());
});
$("#<%=Button2.ClientID%>").click();
});
})
function showStickySuccessToast() {
$().toastmessage( showToast , {
text: Finished Processing! ,
sticky: false,
position: middle-center ,
type: success ,
closeText: ,
close: function () {
}
});
}
</script>
这是我ton子在“综合框架”中打开链接:
<a id="various3" href="#"><asp:Button ID="Button1"
runat="server" Text="Button" OnClientClick="Button2_Click"/></a>
实际上,这是一页的简单内容:
And this is the message