我如何捕获页面重新加载事件?
我有一个消息传递系统,当用户刷新页面时,它会丢失所有输入。我想使用ajax重新填充,因此我需要检测页面何时被刷新/重新加载。
答案 0 :(得分:39)
$('body').bind('beforeunload',function(){
//do something
});
但是这不会保存以后的任何信息,除非您计划将其保存在某个地方的cookie(或本地存储)中,并且unload
事件并不总是在所有浏览器中触发。
示例:http://jsfiddle.net/maniator/qpK7Y/
代码:
$(window).bind('beforeunload',function(){
//save info somewhere
return 'are you sure you want to leave?';
});
答案 1 :(得分:14)
如果你想在页面刷新之前预订一些变量
$(window).on('beforeunload', function(){
// your logic here
});
如果你想根据某些条件加载一些内容
$(window).on('load', function(){
// your logic here`enter code here`
});
答案 2 :(得分:9)
所有代码都是客户端,我希望您对此有用:
首先我们将使用3个函数:
function setCookie(c_name, value, exdays) {
var exdate = new Date();
exdate.setDate(exdate.getDate() + exdays);
var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
document.cookie = c_name + "=" + c_value;
}
function getCookie(c_name) {
var i, x, y, ARRcookies = document.cookie.split(";");
for (i = 0; i < ARRcookies.length; i++) {
x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
x = x.replace(/^\s+|\s+$/g, "");
if (x == c_name) {
return unescape(y);
}
}
}
function DeleteCookie(name) {
document.cookie = name + '=; expires=Thu, 01-Jan-70 00:00:01 GMT;';
}
现在我们将从页面加载开始:
$(window).load(function () {
//if IsRefresh cookie exists
var IsRefresh = getCookie("IsRefresh");
if (IsRefresh != null && IsRefresh != "") {
//cookie exists then you refreshed this page(F5, reload button or right click and reload)
//SOME CODE
DeleteCookie("IsRefresh");
}
else {
//cookie doesnt exists then you landed on this page
//SOME CODE
setCookie("IsRefresh", "true", 1);
}
})
答案 3 :(得分:0)
客户端有两个事件,如下所示。
<强> 1。 window.onbeforeunload (在浏览器/选项卡上调用关闭和页面加载)
<强> 2。 window.onload (调用页面加载)
在服务器端
public JsonResult TestAjax( string IsRefresh)
{
JsonResult result = new JsonResult();
return result = Json("Called", JsonRequestBehavior.AllowGet);
}
在客户端
<script type="text/javascript">
window.onbeforeunload = function (e) {
$.ajax({
type: 'GET',
async: false,
url: '/Home/TestAjax',
data: { IsRefresh: 'Close' }
});
};
window.onload = function (e) {
$.ajax({
type: 'GET',
async: false,
url: '/Home/TestAjax',
data: {IsRefresh:'Load'}
});
};
</script>
在浏览器/选项卡上关闭: 如果用户关闭浏览器/选项卡,则window.onbeforeunload将触发,服务器端的IsRefresh值将为“关闭”。
在刷新/重新加载/ F5: 如果用户将刷新页面,首先window.onbeforeunload将使用IsRefresh值=“关闭”触发,然后window.onload将使用IsRefresh值=“加载”触发,所以现在您可以确定您的页面正在刷新。