特定の経過後に閉じるボタンを表示するにはどうすればよいですか。settimeoutを試しましたが、機能しません。誰かが特定の時間の後に閉じるボタンを表示するための基本的なサンプルを提供できますか?
ありがとう
編集:
誰かがこれについて私に尋ねたので、これは私がカスタムボタンをした方法です
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変数を使用した理由は、条件ステートメントを使用し、それに基づいてダイアログが開いたときにさまざまなボタンを表示するためです。