JQuery弹出对话框无法打开

时间:2014-11-04 10:52:22

标签: javascript jquery jquery-ui dialog

我正在使用jqueryui/1.9.2/jquery-ui.min.js弹出对话框。这是我的代码

$("#button_id").on("click", function(){
    $("#dialog").dialog("open");
})

当我第一次点击按钮时,它正常播放对话框但关闭对话框后。比我再次点击它,它显示这样的消息

Error: cannot call methods on dialog prior to initialization; attempted to call method 'open'  like in image.

it's show this message errors and stop pop up any more

如何解决它。

1 个答案:

答案 0 :(得分:0)

请在使用前将其初始化

$("#dialog").dialog({
        autoOpen: false
    })

请查看此链接

jQuery UI - Error: cannot call methods on dialog prior to initialization; attempted to call method 'open'