js怎么实现,在web页面10分钟内没有任何操作,自动跳回首页(default.aspx)
js如何实现,在web页面10分钟内没有任何操作,自动跳回首页(default.aspx)
如题所述,js如何实现,在web页面10分钟内没有任何操作,自动跳回首页(default.aspx) ?
------解决思路----------------------
http://xieruilin.iteye.com/blog/779375
------解决思路----------------------
setTimeout来做。。
如题所述,js如何实现,在web页面10分钟内没有任何操作,自动跳回首页(default.aspx) ?
------解决思路----------------------
http://xieruilin.iteye.com/blog/779375
------解决思路----------------------
setTimeout来做。。
var timer;
function startTimer(){clearTimeout(timer);timer=setTimeout(function(){location='default.aspx'},10*1000);}
document.onmousemove=document.onmousedown=startTimer