我怎样才能强制脚本等待卸载的东西,直到“淡出”完成?我已经尝试了几件事,但它们似乎都不起作用,它只是立即将我重定向到指定的 URL。
window.onbeforeunload = function(){
$(document).fadeOut(1500,function(){
// do something here to confirm the redirect
});
};
提前致谢。
我怎样才能强制脚本等待卸载的东西,直到“淡出”完成?我已经尝试了几件事,但它们似乎都不起作用,它只是立即将我重定向到指定的 URL。
window.onbeforeunload = function(){
$(document).fadeOut(1500,function(){
// do something here to confirm the redirect
});
};
提前致谢。