Javascript重新整理頁面的幾種方法:
1 history.go(0)
2 location.reload()
3 location=location
4 location.assign(location)
5 document.execCommand('Refresh')
6 window.navigate(location)
7 location.replace(location)
8 document.URL=location.href
自動重新整理頁面的方法:
1.頁面自動重新整理:把如下代碼加入<head>地區中
<meta http-equiv="refresh" content="20">
其中20指每隔20秒重新整理一次頁面.
2.頁面自動跳轉:把如下代碼加入<head>地區中
<meta http-equiv="refresh" content="20;url=http://www.wyxg.com">
其中20指隔20秒後跳轉到頁面
3.頁面自動重新整理js版
<script language="JavaScript">
function myrefresh() window.location.reload(); setTimeout('myrefresh()',1000); //指定1秒重新整理一次
</script>
ASP.NET如何輸出重新整理父視窗指令碼語句
1. this.response.write("<script>opener.location.reload();</script>");
2. this.response.write("<script>opener.window.location.href = opener.window.location.href;</script>");
3. Response.Write("<script language=javascript>opener.window.navigate(''你要重新整理的頁.asp'');</script>")
JS重新整理架構的指令碼語句
//如何重新整理包含該架構的頁面用
<script language=JavaScript>
parent.location.reload();
</script>
//子視窗重新整理父視窗
<script language=JavaScript>
self.opener.location.reload();
</script>
( 或 <a href="javascript:opener.location.reload()">重新整理</a> ) <script language=JavaScript>
parent.otherFrameID.location.reload();
</script>
如果想關閉視窗時重新整理或者想開窗時重新整理的話,在<body>中調用以下語句即可。
<body onload="opener.location.reload()"> 開窗時重新整理
<body onUnload="opener.location.reload()"> 關閉時重新整理
<script language="javascript">
window.opener.document.location.reload()
</script>
頁面載入時只執行onload
頁面關閉時只執行onunload
頁面重新整理時先執行onbeforeunload,然後onunload,最後onload。這樣我們可以在onbeforeunload中加一個標記,在onunload中判斷該標記,即可達到判斷頁面是否真的關閉了。
轉:http://www.cnblogs.com/cx361/archive/2012/01/15/2322708.html