很多程序员无论是新手还是老的程序员都避免不了关于JS刷新页面的相关内容,在本文中我们整理了编程之家总结的关于JS页面刷新的相关重要知识点文章,一起来跟着学习下。
- reload 方法,该方法强迫浏览器刷新当前页面
- replace 方法,该方法通过指定URL替换当前缓存在历史里(客户端)的项目,因此当使用replace方法之后,你不能通过“前进”和“后退”来访问已经被替换的URL
- 返回并刷新页面
- 自动刷新页面的方法
- history.go(0)
- location.reload()
- location=location
- location.assign(location)
- document.execCommand('Refresh')
- window.navigate(location)
- location.replace(location)
- document.URL=location.href
@L_403_5@
- 语句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();
介绍用JavaScript刷新上级页面和当前页面,附上具体实例代码。
- 页面自动刷新:把如下代码加入区域中<Meta http-equiv="refresh" content="20"> 其中20指每隔20秒刷新一次页面.
- 页面自动跳转:把如下代码加入区域中 <Meta http-equiv="refresh" content="20;url=//www.jb51.cc"> 其中20指隔20秒后跳转到//www.jb51.cc/tools/files.shtml页面
- 页面自动刷新js版
有的时候需要手动调用来刷新界面,比如非动态切换的语言模式啊,风格样式啊什么的。这篇内容给大家整理了简单的实例代码。
关闭时刷新