欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Javascript 刷新全集常用代碼

 更新時間:2009年11月22日 00:20:55   作者:  
Javascript刷新頁面實現(xiàn)代碼,需要的朋友可以參考下。
一:刷新本頁面
前臺:<script>window.location.href=window.location.href;</script>
后臺:Response.Write("<script>window.location.href=window.location.href;</script>")
二:刷新父頁面
前臺:opener.location.href=opener.location.href;</script>
后臺:Response.Write("<script>opener.location.href=opener.location.href;</script>")
三:鏈接到指定網頁
前臺:<script>window.location.href='http://www.dbjr.com.cn';</script>
  MSDN說的window.navigate(sURL)方法是針對IE的,不適用于FF,在HTML DOM Window Object中,根本沒有列出window.navigate方法。
后臺:Response.Write("<script>window.location.href='yourpage.aspx';</script>")
  或者: Response.Write("NewUrl");
四:刷新Iframe
前臺:<script>iframe名字或者ID.location.reload(true);</script>

五:定時刷新
function flash(){window.location.href="http://www.dbjr.com.cn";setTimeout("flash()",1000);} //1000為一秒
<script>setTimeout("location.href=http://www.dbjr.com.cn",2000)</script>
<script>setTimeout("self.location.reload();",1000);<script>一秒一次

相關文章

最新評論