如何使用 blockui 获得增量消息

发布于 2024-09-09 21:52:53 字数 532 浏览 6 评论 0原文

我有一个很长的ajax调用,所以我像这样使用blockui。 。

  $("#roadmapContainer").block({ message: '<h2>Loading Ajax Request</h2><br/><img src="/Content/images/ajax-loader.gif" />' });

   $.post(timelineUrl, function(data) {

         onLoad(data);
         $("#roadmapContainer").unblock();

在“onLoad()”方法中,它需要很长时间,所以我想要一些东西,在我取消阻止之前,我可以有“块UI更改的消息”

"Loading Ajax Request"

"Parsing Results"

可以用jquery blockui吗?

i have a long ajax call so i am using blockui like this . .

  $("#roadmapContainer").block({ message: '<h2>Loading Ajax Request</h2><br/><img src="/Content/images/ajax-loader.gif" />' });

   $.post(timelineUrl, function(data) {

         onLoad(data);
         $("#roadmapContainer").unblock();

inside teh "onLoad()" method it takes a long time so i want something where i can have the "message of block UI change from

"Loading Ajax Request"

to

"Parsing Results"

before i unblock.

is this possible with jquery blockui ?

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

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

发布评论

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

评论(1

无需解释 2024-09-16 21:52:53

据我从 blockui 的文档中可以看出,您可以再次调用 block() 来替换消息——您不需要每次调用 block() 时都调用 unblock() 。只要在 onLoad() 调用之前执行此操作,您就应该很顺利。

另外,请记住,如果 onLoad() 是同步的,则在等待 onLoad() 完成时,您的浏览器仍将被锁定。

As far as I can tell from blockui's documentation, you can call block() again to replace the message -- you don't need to call unblock() for every time you call block(). Just do that before your onLoad() call and you should be golden.

Also, keep in mind that if onLoad() is synchronous, your browser will still be locked up while you're waiting for onLoad() to finish.

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