在javascript程式設計中,多使用location.reload實作頁面刷新。
範例:
window.location.href=window.location.href; window.location.reload;
經測試,這兩句在某些情況下可以代替location.reload(true);
而不會出現重試對話框達到刷新的效果
在js中實現刷新頁面的方法有很多種,在js中有一個location.reload()函數,它可以實作我們想要的功能。
window.location.reload(true) //瀏覽器重新從伺服器請求資源,在http請求頭中不會包含快取標記。
例1,刷新目前頁面
<script> window.location.reload(); </script>
例2,JS實作刷新iframe的方法
用iframe的name屬性定位
<input type="button" name="Button" value="Button" onclick="document.frames('ifrmname').location.reload()"> 或 <input type="button" name="Button" value="Button" onclick="document.all.ifrmname.document.location.reload()">
例3,首先,定義一個iframerr
re.<iframe method="post" id ="IFrameName" src="aa.htm" ></iframe>
注意:
window.location.reload;刷新時如果提交資料的動作,則會出現對話框!
解決方法:
<input type ="button" value ="刷新" onclick ="aa()"/> function aa() { (php中文网 www.php.cn 编辑整理) //parent.location.replace(parent.location.href);//服务器端重新创建页面 parent.document.location.reload();//相当于F5 //window.location.href(parent.location.href);//iframe内容重定向 }
刷新父視窗:
window.location.href=window.location.href; window.location.reload;
更多js刷新頁面location.reload()用法相關文章請關注PHP中文網!