如何禁用 JQueryUI - 模态表单中的背景?
我刚刚开始使用 jQuery 和 ASP.NET MVC。我想要 JQuery 站点示例中提到的相同模态形式 - http://jqueryui.com/ demos/dialog/#modal-form
$("#divSchedule").dialog({
autoOpen: false,
show: "slide",
modal: true
});
$("#btn").click(function () {
$("#divSchedule").dialog("open");
return false;
});
对话框出现在页面上,但用户可以单击任何后台控件。您能建议一些禁用(模糊)背景的方法吗?和CSS有关系吗?
I have just started working in jQuery and ASP.NET MVC. I want the same modal form mentioned in the example of JQuery site - http://jqueryui.com/demos/dialog/#modal-form
$("#divSchedule").dialog({
autoOpen: false,
show: "slide",
modal: true
});
$("#btn").click(function () {
$("#divSchedule").dialog("open");
return false;
});
Dialog appears on the page but user can click on any of the background controls. Can you please suggest something to disable(blur) the background? Is it something to do with CSS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本上你把对话框定义弄乱了,试试这个 http://jsfiddle.net/tctc2/1/
Basically you made a mess of your dialog definition, try this http://jsfiddle.net/tctc2/1/
他的问题的快速答案是:
使用
modal: true
使The quick answer for his question is:
use
modal: true
in order to