<input type=button value=刷新 onclick="window.location.reload()">
<input type=button value=前進 onclick="window.history.go(1)">
<input type=button value=後退 onclick="window.history.go(-1)">
<input type=button value=前進 onclick="window.history.forward()">
<input type=button value=後退 onclick="window.history.back()"> 後退+刷新<input type=button value=後退 onclick="window.history.go(-1);window.location.reload()">在C# Web程序中,如爲頁面按鈕寫返回上一頁代碼javascript
this.RegisterClientScriptBlock("E", "<script language=javascript>history.go(-2);</script>");java
其中,history.go(-2),要寫爲-2,因在按鈕事件觸發前,已刷新一次頁面,因此應是-2。jsp
Response.Write("<script language=javascript>history.go(-2);</script>");this
此處也要寫爲「-2」。跟直接寫腳本的有所不一樣。history.back()是會上一頁
i=1
history.go(i)去指定的某頁
若是是history.go(0)那就是刷新這兩個屬於JS代碼,至關於IE的前進、後退功能。
具體的用處就要看何時須要這個就用上。好比用戶註冊時的驗證是後臺驗證,不符合要求的時候就能夠用這個,能夠最大限度保證用戶少重複輸入數據。
例如:載入頁面:
function onLoadPage(){
if(event.srcElement.tagName=="SPAN"){
oFrame=top.window.middle.frames[2];
oTxt=event.srcElement.innerText;
switch(oTxt){
case "前 進":
oFrame.history.go(1);
case "後 退":
oFrame.history.back();
case "刷 新":
oFrame.location.reload();
}
}
}事件
打開一個jsp頁面,確定是用客戶端腳本進行刷新了。
Javascript刷新頁面的幾種方法:
1 history.go(0)
2 location.reload()
3 location=location
4 location.assign(location)
5 document.execCommand('Refresh')
6 window.navigate(location)
7 location.replace(location)
8 document.URL=location.hrefip