我希望如果我的页面上没有活动5分钟,那么该页面将被重定向到预定义的页面。
任何人都可以建议我如何使用JavaScript或jQuery。
答案 0 :(得分:8)
如果您想要一个真正的不活动控件,请使用此库(控制鼠标和键盘活动)
jQuery idletimer
http://paulirish.com/2009/jquery-idletimer-plugin/
以下是它的一个示例用法:
// idleTimer() takes an optional argument that defines the idle timeout
// timeout is in milliseconds; defaults to 30000
$.idleTimer(10000);
$(document).bind("idle.idleTimer", function(){
// function you want to fire when the user goes idle
});
$(document).bind("active.idleTimer", function(){
// function you want to fire when the user becomes active again
});
// pass the string 'destroy' to stop the timer
$.idleTimer('destroy');
答案 1 :(得分:6)
可能有类似的东西吗?
<body onmousemove="canceltimer()" onclick="canceltimer()">
<script type="text/javascript">
var tim = 0;
function reload() {
tim = setTimeout("location.reload(true);",300000); // 5 minutes
}
function canceltimer() {
window.clearTimeout(tim); // cancel the timer on each mousemove/click
reload(); // and restart it
}
</script>
答案 2 :(得分:0)
您好请查看此博客文章,了解如何检测网站中的空闲用户。这是jQuery Idletimer Plugin。你可以找到demo page here。
简单用法:
// idleTimer() takes an optional argument that defines the idle timeout
// timeout is in milliseconds; defaults to 30000
$.idleTimer(10000);
您可以从[{3}}获取github
的来源答案 3 :(得分:-3)
难道您不能将META刷新设置为超时所需的秒数并指向相应的重定向页面吗?
<META HTTP-EQUIV="Refresh" CONTENT="60;url=http://www.mydomain.com/redirect_page.html">
我知道这通常是不受欢迎的,但它避免了对jQuery(或Javascript)的需求,所有浏览器都尊重它。
有时简单就更好了,即使它很难看。