如何使用 blockui 获得增量消息
我有一个很长的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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
据我从 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.