定时自动刷新跳转(5秒后跳到index.html页面):
- <meta http-equiv="refresh" content="5,url=index.html">
- <%
- //页面每隔30秒自动链接至另一页面
- response.setHeader("refresh" , "30;URL=http://www.sina.com" );
- %>
键盘按键控制跳转:
- <script>
- document.onkeydown = function(e) {//键盘按键控制
- e = e || window.event;
- if ((e.ctrlKey && e.keyCode == 82) || e.keyCode == 116) { //ctrl+R和F5刷新
- window.location.replace('index.html');
- return false;
- }
- }
- </script>