jQuery UI叠加没有显示?

时间:2011-06-02 16:54:08

标签: jquery jquery-ui

所有。我正在尝试使用叠加层来处理我的模态框。

如何创建工作叠加层?

我正在使用jQuery UI并让它与叠加层分开工作。

以下是调用模块的代码:

function showDialog(){
    $("#example").dialog();
    return false;   
}

$(window).resize(function() {
    $("#example").dialog("center", "center", "center");
});

如何调用叠加层?

如果您点击以下网址中显示对话框的链接:

http://satbulsara.com/NSJ-LOCAL-02-06/eqs1.htm

谢谢,

周六

1 个答案:

答案 0 :(得分:7)

要创建对话框模式,您只需为modal选项指定true

function showDialog(){
    $("#example").dialog({
        modal: true // Make the dialog "modal" (show an overlay beneath the dialog)
    });
    return false;   
}

Here是jQueryUI网站上的一个例子。