我希望如果我的页面上5分钟没有任何活动,那么该页面将被重定向到预定义页面。

谁能建议我如何使用JavaScript或jQuery执行此操作。

最佳答案

如果您想要真正的不活动控件,请使用此库(也可以控制鼠标和键盘的活动)

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');

10-07 19:16