这次给大家带来JS刷新页面方法汇总,JS刷新页面的注意事项有哪些,下面就是实战案例,一起来看一下。
reload 方法,该方法强迫浏览器刷新当前页面
replace 方法,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过“前进”和“后退”来访问已经被替换的URL
返回并刷新页面
自动刷新页面的方法
页面自动刷新
页面自动跳转
页面自动刷新js版
JS刷新框架的脚本语句
JS相关刷新的实例代码
<a href="javascript:history.go(-1)" rel="external nofollow" >返回上一页</a> <a href="javascript:location.reload()" rel="external nofollow" >刷新当前页面</a> <a href="javascript:" rel="external nofollow" rel="external nofollow" rel="external nofollow" onclick="history.go(-2); ">返回前两页</a> <a href="javascript:" rel="external nofollow" rel="external nofollow" rel="external nofollow" onclick="self.location=document.referrer;">返回上一页并刷新</a> <a href="javascript:" rel="external nofollow" rel="external nofollow" rel="external nofollow" onclick="history.back(); ">返回上一页</a>
history.go(0) location.reload() location=location location.assign(location) document.execCommand('Refresh') window.navigate(location) location.replace(location) document.URL=location.href
a链接刷新页面与js刷新页面用法示例介绍 a链接的使用操作 JS怎么刷新当前页面 location.replace(location.href); JS刷新框架的脚本语句
<script language="JavaScript"> function myrefresh() { window.location.reload(); } setTimeout('myrefresh()',1000); //指定1秒刷新一次 </script>
语句1. window.parent.frames[1].location.reload(); 语句2. window.parent.frames.bottom.location.reload(); 语句3. window.parent.frames["bottom"].location.reload(); 语句4. window.parent.frames.item(1).location.reload(); 语句5. window.parent.frames.item('bottom').location.reload(); 语句6. window.parent.bottom.location.reload(); 语句7. window.parent['bottom'].location.reload();
JS 重载页面,本地刷新,返回上一页 JS定时刷新知识点实例 JS刷新框架的脚本语句 子窗口刷新父窗口 如何刷新另一个框架的页面用
介绍用JavaScript刷新上级页面和当前页面,附上具体实例代码。
有的时候需要手动调用来刷新界面,比如非动态切换的语言模式啊,风格样式啊什么的。这篇内容给大家整理了简单的实例代码。
<body onload="opener.location.reload()"> 开窗时刷新 <body onUnload="opener.location.reload()"> 关闭时刷新 <script language="javascript"> window.opener.document.location.reload() </script>
无闪烁更新网页的课题比较大。
加载的html字符串(通过ajax获取的),如果还需要运行代码,那么肯定有问题。
希望用一个不显示的iframe来承载这个对象。这有点dirty work的感觉。
总结了JS ASP.NET等在不同环境中实现页面和窗口刷新的方法。
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
以上是JS刷新页面方法汇总的详细内容。更多信息请关注PHP中文网其他相关文章!