时间:2021-07-01 10:21:17 帮助过:3人阅读
代码如下:
<script language=javascript>
function stoprefresh()
{
return "you will lose any unsaved content";
}
function UnloadConfirm()
{ //页面离开后的事件
alert('离开页面后的一些清理工作……');
}
</script>
<body>
<script>
window.onbeforeunload=stoprefresh; //注册关闭前的事件
window.onunload = UnloadConfirm; //注册关闭后的事件
</script>
<a href = "//www.gxlcms.com">脚本之家</a>
</body>