第一句子网 - 唯美句子、句子迷、好句子大全
第一句子网 > 使用localStorage统计页面停留时间

使用localStorage统计页面停留时间

时间:2020-08-02 00:59:20

相关推荐

使用localStorage统计页面停留时间

function statisticsStay(){console.log(localStorage.getItem('testSecond'));var second = 0;//开启定时器记录页面停留时间var timer = setInterval(function(){second++;},1000);//页面刷新、关闭时触发onbeforeunload事件把停留时间记录到localStoragewindow.onbeforeunload = function(){localStorage.setItem('testSecond',second);};}statisticsStay();

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。