定时自动刷新跳转(5秒后跳到index.html页面):
<meta http-equiv="refresh" content="5,url=index.html">
键盘按键控制跳转:
<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>