這次帶給大家JS刷新頁面方法匯總,JS刷新頁面的注意事項有哪些,下面就是實戰案例,一起來看一下。
#reload 方法,該方法強迫瀏覽器刷新目前頁面
replace 方法,該方法透過指定URL替換目前快取在歷史裡(客戶端)的項目,因此當使用replace方法之後,你不能透過「前進」和「後退」來存取已經被替換的URL
返回並刷新頁面
自動刷新頁面的方法
頁面自動刷新
#頁面自動跳轉
<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刷新框架的脚本语句 子窗口刷新父窗口 如何刷新另一个框架的页面用
<body onload="opener.location.reload()"> 开窗时刷新 <body onUnload="opener.location.reload()"> 关闭时刷新 <script language="javascript"> window.opener.document.location.reload() </script>
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
js正規相關使用案例分享#vue按鈕多次點擊重複提交資料如何處理以上是JS刷新頁面方法匯總的詳細內容。更多資訊請關注PHP中文網其他相關文章!