如何在某些时间过去后显示关闭按钮,我尝试了 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 变量的原因是因为我使用条件语句并基于此我在对话框打开时显示不同的按钮。