我正在使用jquery對話框爲用戶輸入評論,並比我有jQuery對話框中添加和取消按鈕。我有一個像他們命中時的邏輯添加我需要在數據庫中插入文本並只刷新整個HTML頁面內的iframe。一切都很完美。但是,當iframe刷新比它保持在dom事件中的舊對話框。所以當我點擊第二次比它出現預期的屏幕。但我不知道爲什麼在第一次點擊它將保持舊的jQuery對話框。jquery對話框事件清除
我使用這個代碼:
$("#dialog-confirm").dialog({
resizable: false,
height: 200,
modal: true,
autoOpen: false,
buttons: [
{
id: "add_btn",
text: "Add",
disabled: true,
click: function() {
// logic of adding text in db goes here.
$(this).dialog("close");
}
},
{
id: "cancel_btn",
text: "Cancel",
click: function() {
$(this).dialog("close");
}
}
]
});
在此先感謝。
感謝兄弟..我會試試..你的意思是說#到#id到「#dialog-confirm」關於我的代碼?是對的嗎? –
你沒有辦法解決..我不知道爲什麼。 –
把你的HTML數據 – Sender