转:web页面超时打出log
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转:web页面超时打出log相关的知识,希望对你有一定的参考价值。
var lastTime = new Date().getTime();
var currentTime = new Date().getTime();
var timeOut = 1 * 60 * 1000; //设置超时时间: 10分
window.onload = function () {
window.document.onmousemove = function () {
lastTime = new Date().getTime(); //更新操作时间
}
};
function testTime() {
currentTime = new Date().getTime(); //更新当前时间
if (currentTime - lastTime > timeOut) { //判断是否超时
console.log("超时");
location.href = ‘../../Account/Logout‘;
}
}
/* 定时器 间隔1秒检测是否长时间未操作页面 */
window.setInterval(testTime, 1000);
到不到由来网址了
以上是关于转:web页面超时打出log的主要内容,如果未能解决你的问题,请参考以下文章