location.reload相當於我們按F5,頁面在服務器端已經存在,isPostBack頁面不會從服務器端重新生成,然後返回客戶端
會在浏覽器的歷史浏覽記錄中增加一條記錄
location.replace 頁面會從服務器端重新創建,not ispostback,這個是用新的url代替原Url,把Histrory裡面url也替換成了新的Url
window.location.href,本層頁面跳轉
首先,定義一個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);//服務器端重新創建頁面
parent.document.location.reload();//相當於F5
//window.location.href(parent.location.href);//iframe內容重定向
}