Javascript 刷新全集常用代码
Javascript 刷新全集常用代码
发布时间:2016-12-30 来源:查字典编辑
摘要:一:刷新本页面前台:window.location.href=window.location.href;后台:Response.Write(...

一:刷新本页面

前台:<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.jb51.net';</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.jb51.net";setTimeout("flash()",1000);} //1000为一秒

<script>setTimeout("location.href=http://www.jb51.net",2000)</script>

<script>setTimeout("self.location.reload();",1000);<script>一秒一次

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类