在 updatePanel 上回发后添加额外的 javascript
我使用 updatePanel 并在更新它的回发后,我想向页面添加一些 javascript,该页面将在所有 javascript 运行后执行,
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(MyJSFunc);
感谢您提供如何执行此操作的任何提示
Im using updatePanel and after postback which updates it I would like to add some javascript to the page which would execut after all javascript run which is specified on
Sys.WebForms.PageRequestManager.getInstance().add_endRequest(MyJSFunc);
Thanks for any hint how to do that
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
查看 ScriptManager.RegisterClientScriptBlock 方法。这样您就可以在回发后将 javascript 添加到您的页面中。
Have a look at the ScriptManager.RegisterClientScriptBlock Method. With this you can add in javascript to your page after the postback.
前几天我有一个类似的问题,在 ASP.Net Microsoft AJAX 之后执行 JQuery< /a>
我认为 trelston 提供的答案就是您正在寻找的。
I had a similar question the other day, Execute JQuery after ASP.Net Microsoft AJAX
I think the answer provided by trelston is what you are looking for.