如何在一定的時間後顯示關閉按鈕,我試過settimeout但它不會工作。有人可以提供一個基本的樣本,以顯示一段時間後關閉按鈕。jquery對話框顯示特定時間後的關閉按鈕
感謝
編輯:
我這是怎麼做的定製按鈕,因爲有人問我這個
var myButtons = {
'Close': function() {
},
'Do not show this again': function() {
$.ajax({
type: "POST",
url: pagename,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (response) {
if (response.d == true) {
}
}
});
}
};
$("#div").html("").dialog({ modal: true, resizable: false, width: 830, height: 580, show: 'slow', title: '', open: function (event, ui) { $(".ui-dialog-titlebar", $("#div").parent()).hide(); }, buttons: myButtons });
這就是我如何做的自定義按鈕。我有mybuttons變量的原因是因爲我使用條件語句,並基於該對話框打開時顯示不同的按鈕。
對話框也會顯示,但我只希望在10秒左右後顯示按鈕。 – user1284460 2012-04-10 15:32:44