onbeforeunload和onunload的使用方式
2021-02-04 本文已影响0人
雨季雨线
里面写alert是不会有效果的,页面已经销毁了,也就没法执行alert了。
onbeforeunload
window.onbeforeunload = (event) => {
return ''
}
window.onbeforeunload = (event) => {
event.returnValue = false;
}
onunload
连续刷新只有一次会弹框