Javascript刷新頁面的幾種方法
復制代碼 代碼如下:
historygo()
locationreload()
location=location
locationassign(location)
documentexecCommand(Refresh)
windownavigate(location)
locationreplace(location)
documentURL=locationhref
自動刷新頁面的方法:
頁面自動刷新把如下代碼加入<head>區域中
復制代碼 代碼如下:
<meta httpequiv=refresh content=>
其中
指每隔
秒刷新一次頁面
頁面自動跳轉把如下代碼加入<head>區域中
復制代碼 代碼如下:
<meta httpequiv=refresh content=;url=>
其中
指隔
秒後跳轉到頁面
頁面自動刷新js版 復制代碼 代碼如下:
<script language=JavaScript>
function myrefresh()
{
windowlocationreload();
}
setTimeout(myrefresh()); //指定秒刷新一次
</script>
ASP
NET如何輸出刷新父窗口腳本語句
this
response
write(
<script>opener
location
reload();</script>
);
this
response
write(
<script>opener
window
location
href = opener
window
location
href;</script>
);
Response
Write(
<script language=javascript>opener
window
navigate(
你要刷新的頁
asp
);</script>
)
JS刷新框架的腳本語句
復制代碼 代碼如下:
//如何刷新包含該框架的頁面用
<script language=JavaScript>
parentlocationreload();
</script>
//子窗口刷新父窗口
<script language=JavaScript>
selfopenerlocationreload();
</script>
( 或 <a javascript:opener
location
reload()
>刷新</a> )
復制代碼 代碼如下:
//如何刷新另一個框架的頁面用
<script language=JavaScript>
parentotherFrameIDlocationreload();
</script>
如果想關閉窗口時刷新或者想開窗時刷新的話
在<body>中調用以下語句即可
復制代碼 代碼如下:
<body onload=openerlocationreload()> 開窗時刷新
<body onUnload=openerlocationreload()> 關閉時刷新
<script language=javascript>
windowopenerdocumentlocationreload()
</script>
From:http://tw.wingwit.com/Article/program/Java/Javascript/201401/30270.html