如何禁用 JQueryUI - 模态表单中的背景?

发布于 2024-12-08 12:32:50 字数 544 浏览 0 评论 0原文

我刚刚开始使用 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 技术交流群。

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

发布评论

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

评论(2

一个人练习一个人 2024-12-15 12:32:50

基本上你把对话框定义弄乱了,试试这个 http://jsfiddle.net/tctc2/1/

Basically you made a mess of your dialog definition, try this http://jsfiddle.net/tctc2/1/

姜生凉生 2024-12-15 12:32:50

他的问题的快速答案是:
使用 modal: true 使

  1. 背景变暗,
  2. 禁用与背景功能的任何交互

The quick answer for his question is:
use modal: true in order to

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