jQuery BlockUi 消息接二连三

发布于 2024-08-16 21:24:34 字数 214 浏览 4 评论 0原文

我正在使用 jQuery BlockUI 插件,并且我已经能够在页面中成功显示一条消息,但是...假设我想一条接一条地显示 3 条消息。

类似于:

  1. 消息:“你好世界!”
  2. 消息:“你好银河!”
  3. 消息:“你好宇宙!”

我如何使用 jQuery BlockUI 做到这一点?

I'm using jQuery BlockUI plugin, and i have been able to sucessfully show a single message in the page, however... let's say that I want to show 3 messages , one after another.

Something like:

  1. message: 'hello world!'
  2. message: 'hello galaxy!'
  3. message: 'hello universe!'

how do I do this with jQuery BlockUI?

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

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

发布评论

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

评论(2

淡看悲欢离合 2024-08-23 21:24:34

只需在页面中创建一个 div,如下所示:

<div id="blockMessage"></div>

对于脚本...

$.blockUI({ message: $('#blockMessage') });
$("#blockMessage").html('Hello World!');
$("#blockMessage").html('Hello Galaxy!');
$("#blockMessage").html('Hello Universe!);
$.unblockUI();

这进行得非常快,但您明白了...这里的好处是您也可以将其样式设置为您想要的外观,例如:

#blockMessage { font-weight: bold; }

Just create a div in your page like this:

<div id="blockMessage"></div>

And for the script...

$.blockUI({ message: $('#blockMessage') });
$("#blockMessage").html('Hello World!');
$("#blockMessage").html('Hello Galaxy!');
$("#blockMessage").html('Hello Universe!);
$.unblockUI();

This goes by very fast, but you get the idea....bonus here is you can style it to look however you want as well, e.g.:

#blockMessage { font-weight: bold; }

当您在 onBlock 或 onUnBlock 上调用某些回调函数时,这不起作用,例如:

$.blockUI({
message : '您的新消息',
onBlock : 回调函数
});

另一种方法是,只需使用不同的消息再次调用 blockUI:

$.blockUI({ message: 'New message' });

This does not work when you have some callback function is being called on onBlock or onUnBlock, for example like this:

$.blockUI({
message : 'your new message',
onBlock : callbackFunction
});

An alternative to this would be, just call blockUI again with a different message:

$.blockUI({ message: 'New message' });

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