DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> JS實現頁面超時後自動跳轉到登陸頁面
JS實現頁面超時後自動跳轉到登陸頁面
編輯:關於JavaScript     

JS代碼:

復制代碼 代碼如下:
<script language="javascript">  
var myTime = setTimeout("Timeout()", 60000);  
function resetTime() {  
    clearTimeout(myTime);  
    myTime = setTimeout('Timeout()', 60000);  

function Timeout() {  
    alert("您的登錄已超時, 請點確定後重新登錄!");  
    document.location.href='login.jsp';  
}  
document.documentElement.onkeydown=resetTime; 
document.doocumentElement.onclick=resetTime; 
</script>

代碼很簡單,卻很實用,希望小伙伴們能夠喜歡,直接拿去用吧。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved