『壹』 javascript代碼,在頁面實現倒計時,但不隨頁面刷新而刷新。
實現倒計時很容易,關鍵是你要求刷新頁面,不能停止倒計時
1、使用iframe,嵌入頁面,父頁上執行js操作,這樣子頁面刷新後會接著顯示倒計時;
2、在後台實現,如使用java的timer類來實現倒計時,前台通過ajax獲取倒計時結果,無論前端頁面怎麼刷新,不會停止倒計時
前端的好寫,簡單寫下,僅供參考
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文檔</title>
</head>
<body onLoad="startCount()" onUnload="fromClose()">
<iframe id="myFrame" src="innerPage.html" height="500" width="500"></iframe>
</body>
</html>
<script>
var timer;
var count=10;
function startCount(){
timer=window.setInterval("myTimeBack()",1000);
}
function myTimeBack(){
myFrame.document.getElementById("myInput").value=count;
count=count-1;
if(count==0)
count=10;
}
function fromClose(){
clearInterval(timer);
}
</script>
//嵌入的頁面innerPage.html
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>無標題文檔</title>
</head>
<body>
<input type="text" value="" id="myInput" style="width:50">
<button onClick="refeshFrame()" style="width:80">refresh</button>
</body>
</html>
<script>
function refeshFrame(){
this.location.href=this.location.toString();
}
</script>