web 实现5分钟 鼠标键盘无操作,自动退出登陆
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web 实现5分钟 鼠标键盘无操作,自动退出登陆相关的知识,希望对你有一定的参考价值。
<html>
<head>
<script type="text/javascript">
function ScreenSaver(settings){
this.settings = settings;
this.nTimeout = this.settings.timeout;
document.body.screenSaver = this;
// link in to body events
document.body. = ScreenSaver.prototype.onevent;
document.body. = ScreenSaver.prototype.onevent;
document.body.onkeydown = ScreenSaver.prototype.onevent;
document.body.onkeypress = ScreenSaver.prototype.onevent;
var pThis = this;
var f = function(){pThis.timeout();}
this.timerID = window.setTimeout(f, this.nTimeout);
}
ScreenSaver.prototype.timeout = function(){
if ( !this.saver ){
window.location = ‘/logout‘; //退出登陆功能
}
}
ScreenSaver.prototype.signal = function(){
if ( this.saver ){
this.saver.stop();
}
window.clearTimeout(this.timerID);
var pThis = this;
var f = function(){pThis.timeout();}
this.timerID = window.setTimeout(f, this.nTimeout);
}
ScreenSaver.prototype.onevent = function(e){
this.screenSaver.signal();
}
var saver;
function initScreenSaver(){
//blort;
saver = new ScreenSaver({timeout:5000});
}
window.onload = function(){
initScreenSaver();
}
</script>
</head>
<body>
</p>5秒不动就跳转
</body>
</html>
以上是关于web 实现5分钟 鼠标键盘无操作,自动退出登陆的主要内容,如果未能解决你的问题,请参考以下文章
Selenium02篇python+selenium实现Web自动化:鼠标操作和键盘操作!