var count = 0;
var outTime=5;//分钟
window.setInterval(go, 1000);
function go() {
count++;
if (count == outTime*60) {
bootbox.alert($L("changePass"),function(){
window.location.href= 'login.html';
})
}
}
var x ;
var y ;
//监听鼠标
document.onmousemove = function (event) {
count = 0;
};
//监听键盘
document.onkeydown = function () {
count = 0;
};
var outTime=5;//分钟
window.setInterval(go, 1000);
function go() {
count++;
if (count == outTime*60) {
bootbox.alert($L("changePass"),function(){
window.location.href= 'login.html';
})
}
}
var x ;
var y ;
//监听鼠标
document.onmousemove = function (event) {
count = 0;
};
//监听键盘
document.onkeydown = function () {
count = 0;
};