我需要帮助函数location.reload()
我的代码:
$('.class').on('click', function(){
location.reload();
alert("yea");
});
问题很大,因为webrowser首先显示警报“yea”并且在重新加载页面旁边..当位置结束重新加载时我需要呼叫功能。
有人可以帮助我吗?
答案 0 :(得分:1)
使用localstorage或cookies
喜欢,
$('.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