如何在updatepanel中回发后运行javascript事件
答案 0 :(得分:68)
您可以使用endRequest
的{{1}}事件。
PageRequestManager
答案 1 :(得分:25)
您可以使用ClientScriptManager在重新加载时调用函数:
ClientScriptManager.RegisterStartupScript(this.GetType(), "AKey", "MyFunction();", true);
答案 2 :(得分:11)
简单
<script type="text/javascript">
function pageLoad() {
}
</script>
<asp:ScriptManager runat="server" />
<asp:UpdatePanel runat="server">
<ContentTemplate>
<asp:Button runat="server" ID="Button1" />
<asp:Literal runat="server" ID="TextBox1" />
</ContentTemplate>
</asp:UpdatePanel>
每次触发Button1时都会继续调用pageLoad()
答案 3 :(得分:4)
试试这个:
$.ajax({
beforeSend: function(){
// Handle the beforeSend event
},
complete: function(){
// Handle the complete event
}
// ......
});
答案 4 :(得分:1)
要在UpdatePanel中使用,我会使用ScriptManager.RegisterStartupScript