去掉“请稍候...”使用 blockUI 时的字符串

发布于 2024-12-25 08:13:25 字数 256 浏览 3 评论 0原文

我正在使用该对话框

$("#xDialog").dialog({width: 700, position: 'top' });

,并希望在弹出上述对话框时阻止该页面的用户活动。所以我使用 blockUI

就像

$.blockUI();

它确实使背景变暗,但我得到一个带有字符串“请稍候...”的附加对话框,有没有办法摆脱它。

谢谢

I am using the dialog

$("#xDialog").dialog({width: 700, position: 'top' });

and wanted to block user activity for the page when the above dialog pops up. So i use blockUI

like

$.blockUI();

It does dims the background but i get a additional dialog with a string "Please wait..." is there a way to get rid of that.

Thanks

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

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

发布评论

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

评论(1

青瓷清茶倾城歌 2025-01-01 08:13:25

这应该有效:

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

PS - 取自 BlockUI 文档此处

This should work:

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

P.S. - Taken from the BlockUI docs here.

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