我找到了關於這個問題的答案,但看起來問題不同。關閉後我無法再打開它。jQuery UI對話框只打開一次
編輯:好的,似乎有其他地方在我的jquery代碼中有錯誤。
$(function() {
$("#dialog").dialog({
autoOpen: false,
show: "blind",
hide: "explode"
});
$('#opener').click(openDialog);
})
var openDialog = function(){
$('#dialog').dialog('option', 'buttons',{
"Cancel":function(){
$('#dialog').dialog('close');
}
});
$('#dialog').dialog('open');
};
和HTML:
<div id="dialog" title="Basic dialog">
<p>This is an animated dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
<button id="opener">Open Dialog</button>
你期望它做什麼?打開兩次? – pimvdb
沒有關閉它之後我想能夠再次打開它。 – Vonder
是否有任何javascript錯誤? –