1. 程式人生 > >jsp中頁面定時自動重新整理跳轉和按F5重新整理跳轉

jsp中頁面定時自動重新整理跳轉和按F5重新整理跳轉

定時自動重新整理跳轉(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>