在網頁開發上有時會讓Client端的頁面定時的自動向Server提出Request,其實這有幾種方法可用,下面僅列出一個常用的方法,覺得盡量這樣的設計以避免Server Loading太重。
以HTML方式:
一般我們會在HTML的間加入下面這段標籤內容
<meta content="10; url=DirectorTo.aspx" equiv="refresh">
<meta http-equiv="refresh" content="10;url=#" equiv="refresh">
content 屬性等於 10 表示 10秒鐘後會 Auto Refresh。
url=DirectorTo.aspx" 表示Auto Refresh後要跳到哪一個頁面,若是原來頁面亦可填寫原頁面的位置或是url=#。
以Javascript方式
Example :
<html>
<head>
<script type="text/javascript">
function reloadPage()
{
window.location.reload()
}
</script>
</head>
<body>
<input type="button" value="Reload page" onclick="reloadPage()" />
</body>
</html>
引用自: http://www.w3schools.com/HTMLDOM/met_loc_reload.asp
沒有留言:
張貼留言