JQuery对话框和背景冻结

时间:2011-07-13 08:33:52

标签: jquery dialog

我想在出现jquery对话框时冻结背景。我使用下面的代码作为对话框。

$( “#divGroup”)。对话框

({

        autoOpen: false,
        modal: false,
        height: 450,
        width: 450,
        resizable: false,
        position: [500, 200],

});

1 个答案:

答案 0 :(得分:4)

将modal属性设置为true。

 autoOpen: false,
        modal: true,
        height: 450,
        width: 450,
        resizable: false,
        position: [500, 200],