里面写alert是不会有效果的,页面已经销毁了,也就没法执行alert了。
onbeforeunload
window.onbeforeunload = (event) => {
return ''
}
window.onbeforeunload = (event) => {
event.returnValue = false;
}
onunload
连续刷新只有一次会弹框
里面写alert是不会有效果的,页面已经销毁了,也就没法执行alert了。
window.onbeforeunload = (event) => {
return ''
}
window.onbeforeunload = (event) => {
event.returnValue = false;
}
连续刷新只有一次会弹框
本文标题:onbeforeunload和onunload的使用方式
本文链接:https://www.haomeiwen.com/subject/xoibtltx.html
网友评论