0

谁能看到我要去哪里错了?如果人们长时间不活动,我会尝试将他们重定向到登录页面。

<script>
 var time = new Date().getTime();
 $(document.body).bind("mousemove keypress", function(e) {
     time = new Date().getTime();
 });

 function refresh() {
     if(new Date().getTime() - time >= 4200000) 
        window.location.href = '/login.cfm'

     else 

         setTimeout(refresh, 10000);
 }

 setTimeout(refresh, 10000);
</script>

似乎现在可以工作了!

4

1 回答 1

1

尝试:

window.location.href
于 2013-01-03T12:58:22.943 回答