用jquery拦截ajax请求显示BlockUI

发布于 2024-08-28 03:48:35 字数 120 浏览 6 评论 0原文

我正在尝试使用 jquery 拦截 ajax 请求,以显示等待消息,就像使用插件 BlockUI 一样,但是如何拦截由 asp.net 框架提供的 UpdatePanel 发送的请求,有什么方法可以触发?

谢谢

i'm trying to intercept ajax requests with jquery, to display a waiting message like with using plugin BlockUI, but how can i intercept requests sended by the UpdatePanel provided from asp.net framework, is some way to take the trigger?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

三人与歌 2024-09-04 03:48:35

您可以使用 PageRequestManager 的 beginRequestendRequest 客户端事件来显示“请稍候”UI。

Sys.WebForms.PageRequestManager.instance.add_beginRequest(beginRequestHandler)

Sys.WebForms.PageRequestManager.instance.add_endRequest(endRequestHandler)

请参阅此处了解更多信息。每个事件都有示例。

You can use the beginRequest and endRequest client side events of the PageRequestManager to display a "please wait" UI.

Sys.WebForms.PageRequestManager.instance.add_beginRequest(beginRequestHandler)

Sys.WebForms.PageRequestManager.instance.add_endRequest(endRequestHandler)

See here for more information. There are examples for each event.

稍尽春風 2024-09-04 03:48:35

我真的不知道 UpdatePanel 是什么,但是通常您可以使用 ajax 全局为此,例如:

$(document).bind("ajaxStart", function() {
    $.blockUI();
}).bind("ajaxStop", function() {
    $.unblockUI();
});

如果您在 UpdatePanel 外部有 ajax 调用,而您不想阻止该界面,则需要设置 ajax选项:

global: false,

确保将它们排除在外。

I don't really know what an UpdatePanel is, but generally you could use the ajax global events for that, e.g.:

$(document).bind("ajaxStart", function() {
    $.blockUI();
}).bind("ajaxStop", function() {
    $.unblockUI();
});

If you have ajax calls outside of the UpdatePanel that you do not want to block the interface, you would need to set the ajax option:

global: false,

to ensure that they are excluded.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文