我想使用 jQuery 在 5 秒后自动关闭一个窗口。这是我尝试但没有工作的方法。
function SubmitDesignRequestForm() {
var frm = $("#frmDesignRequestForm").serialize();
$.post("/Admin/SaveDesignRequestForm", frm, function(data) {
Notify("Success", "Saved Successfully");
setTimeout(function() {
window.close();
}, 500);
});
});
}
但上面的功能只显示消息但不关闭窗口。
setTimeout(function() {
Notify("Success", "Saved Successfully");
window.close();
}, 5000);
从上面的功能“保存成功”弹出,但窗口没有关闭。
请指导!