溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

js刷新頁面location.reload()用法詳解

發(fā)布時間:2020-10-01 12:30:51 來源:腳本之家 閱讀:343 作者:大灰狼的小綿羊哥哥 欄目:web開發(fā)

本文介紹了js刷新頁面函數location.reload()的用法,有關js location.reload()函數的例子,有需要的朋友參考下。

在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" οnclick="document.frames('ifrmname').location.reload()"> 
或 
<input type="button" name="Button" value="Button" οnclick="document.all.ifrmname.document.location.reload()">

例3,首先,定義一個iframe 

<iframe method="post" id ="IFrameName" src="aa.htm" ></iframe>

aa.htm頁面的內容: 

 <input type ="button" value ="刷新" onclick ="aa()"/> 
function aa() {
//parent.location.replace(parent.location.href);//服務器端重新創(chuàng)建頁面 
parent.document.location.reload();//相當于F5 
//window.location.href(parent.location.href);//iframe內容重定向 
}

注意:

window.location.reload;

刷新時如果提交數據的動作,則會出現對話框!

解決辦法:

window.location.href=window.location.href; 
window.location.reload;

刷新父窗口:

window.opener.location.href=window.opener.location.href; 
window.opener.location.reload(); 

這種寫法不會顯示對話框。

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持億速云。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI