1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>gotoing, please waiting .............................</title> </head> <body> <script language="JavaScript"> document.location.href="http://www.bing.com" var myTime = setTimeout("Timeout()", 600); function resetTime() { clearTimeout(myTime); var myTime = setTimeout("Timeout",600); } function Timeout() { alert("已超时,准备跳转到备用地址") document.location.href="http://www.baidu.com" } document.documentElement.onkeydown=resetTime(); document.doocumentElement.οnclick=resetTime; </script> </body> </html>
|