可以在页面重新加载时触发JavaScript功能吗?

时间:2012-01-01 09:54:26

标签: javascript jquery

当用户尝试重新加载当前页面时,是否可以触发JavaScript函数?

2 个答案:

答案 0 :(得分:3)

你的意思是确认一个“卸载”,即在用户离开当前页面之前执行一个函数。

<html>
<head>

<script type="text/javascript">
function mymessage()
{
    //this is the sample function code executed on "unload"
    alert("This message was triggered from the onunload event")
}
</script>
</head>

<body onunload="mymessage()">

<p>close this window</p>
</body>

</html>

OR

jQuery版本http://api.jquery.com/unload/

答案 1 :(得分:1)

很难推断出你想要什么,但正如你在评论中所述,你希望在页面刷新之前执行一个函数,你可以使用unload

$(window).unload(function() {
  alert('Handler for .unload() called.');
});