熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Javascript >> 正文

javascript web頁面刷新的方法收集

2022-06-13   來源: Javascript 
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>



ASPNET如何輸出刷新父窗口腳本語句
thisresponsewrite(<script>openerlocationreload();</script>);

thisresponsewrite(<script>openerwindowlocationhref = openerwindowlocationhref;</script>);

ResponseWrite(<script language=javascript>openerwindownavigate(你要刷新的頁asp);</script>)


JS刷新框架的腳本語句

  復制代碼 代碼如下:

  //如何刷新包含該框架的頁面用
<script language=JavaScript>
parentlocationreload();
</script>

//子窗口刷新父窗口
<script language=JavaScript>
selfopenerlocationreload();
</script>


( 或 <a javascript:openerlocationreload()>刷新</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
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.