This time I will bring you a summary of the JS refresh page method, what are the precautions for JS refresh page, the following is a practical case, let's take a look.
reload method, this method forces the browser to refresh the current page
replace method, this method replaces the item currently cached in the history (client) by specifying the URL. Therefore, after using the replace method, you cannot access the replaced item through "forward" and "back" URL
Return and refresh the page
Method to automatically refresh the page
Automatic page refresh
Automatic page jump
Page automatically refreshes js version
Script statement of JS refresh framework
JS related refresh example code
<script language="JavaScript"> function myrefresh() { window.location.reload(); } setTimeout('myrefresh()',1000); //指定1秒刷新一次 </script>
JS 重载页面,本地刷新,返回上一页
JS定时刷新知识点实例
JS刷新框架的脚本语句
子窗口刷新父窗口
如何刷新另一个框架的页面用
介绍用JavaScript刷新上级页面和当前页面,附上具体实例代码。
页面自动刷新:把如下代码加入
区域中 其中20指每隔20秒刷新一次页面.页面自动跳转:把如下代码加入
区域中 其中20指隔20秒后跳转到http://www.jb51.net/tools/files.shtml页面页面自动刷新js版
有的时候需要手动调用来刷新界面,比如非动态切换的语言模式啊,风格样式啊什么的。这篇内容给大家整理了简单的实例代码。
<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中文网其它相关文章!
推荐阅读:
The above is the detailed content of Summary of JS refresh page methods. For more information, please follow other related articles on the PHP Chinese website!