如何在几秒钟后以编程方式关闭jQuery UI对话框?
我想我需要在
中做点什么window.setTimeout(function() {
//Something here....
}, 10000);
答案 0 :(得分:14)
尝试$('#idOfYourDialogue').dialog("close");
答案 1 :(得分:4)
var xSeconds = 2; // 2 seconds
var myDialog = $('dialog_element').dialog('open');
setTimeout(function() { myDialog.dialog('close'); }, xSeconds * 1000);