jQuery location.reload()和启动函数()

时间:2015-01-20 12:02:42

标签: jquery location reload

我需要帮助函数location.reload()

我的代码:

$('.class').on('click', function(){
location.reload();
alert("yea");
});

问题很大,因为webrowser首先显示警报“yea”并且在重新加载页面旁边..当位置结束重新加载时我需要呼叫功能。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

使用localstoragecookies喜欢,

尝试此操作
$('.class').on('click', function(){
   localStorage.setItem('reload',1); // set the reload key for alert
   location.reload();
});
if(localStorage.getItem('reload') && localStorage.getItem('reload')==1){ // if you get the key and ==`1
   localStorage.removeItem('reload'); // remove the key, to prevent next alert
   alert("yea"); // alert first time
}

另请阅读storages