触发 onbeforeunload
事件在HTML文档被卸载之前。
我们可以使用此事件显示一条消息通知用户离开。
确认对话框中显示默认消息。您不能覆盖此消息。
如果需要,我们可以添加我们自己的消息。
没有。
<element onbeforeunload="script or javascript function name">
<body>
onbeforeunload |
Yes | Yes | Yes | Yes | Yes |
<!DOCTYPE html>
<html>
<body onbeforeunload="return myFunction()">
<a href="http://www.www.sxiaw.com">Click here to see the dialog.</a>
<script>
function myFunction() {
return "hi";
}
</script>
</body>
</html>