jQuery 区分页面加载和刷新
我需要区分 jQuery 中的页面加载和页面刷新。我不知道如何实现以下代码。
if( /* this page is loaded reffered */ )
++count ;
else if( /* this paged is refreshed */ )
alert("refreshed");
I need to differentiate between page load and page refresh in jQuery. I have no idea how to implement the following code.
if( /* this page is loaded reffered */ )
++count ;
else if( /* this paged is refreshed */ )
alert("refreshed");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用简单的计数器是行不通的。我将尝试用半伪代码来说明它
。或者,您可以使用 HTML5 Web 存储 API,而不是设置 cookie。
取自此处
Using a simple counter won't work. I'll try to illustrate it in semi-pseudo-code
Alternatively, instead of setting a cookie, you could use the HTML5 web storage API.
Taken from here
您可以使用散列来实现这一点:
然后只需检查 isLoad 来查看是否是刷新。
You could use the hash to implement this:
Then just check isLoad to see if it's a refresh or not.