我想在出现jquery对话框时冻结背景。我使用下面的代码作为对话框。
$( “#divGroup”)。对话框
({
autoOpen: false,
modal: false,
height: 450,
width: 450,
resizable: false,
position: [500, 200],
});
答案 0 :(得分:4)
将modal属性设置为true。
autoOpen: false,
modal: true,
height: 450,
width: 450,
resizable: false,
position: [500, 200],