去掉“请稍候...”使用 blockUI 时的字符串
我正在使用该对话框
$("#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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该有效:
PS - 取自 BlockUI 文档此处。
This should work:
P.S. - Taken from the BlockUI docs here.