history.go(x),// 負數後退,正數前進,0重新整理,但皆不會重新請求;還可為url
history.forward() // 前進1,等效go(1)
history.back() // 後退1,等效go(-1)
返回並重新整理需用location
location.href = document.referrer
location.href = url ; // 跳轉
location.assign(url); // 等效href = url
location.replace(url); // 跳轉並清空 history
location.reload(); // 重新整理並重新請求
iframe的src改變會記錄在父頁面history,
// 不記錄history
document.
getelementbyid
("iframe"
).contentwindow.location.
replace
(url)
// 記錄history
document.
getelementbyid
("iframe"
).src = url
js中WINDOW物件中的location成員物件
js中dom,document,bom,window 區別 js系列教程6 bom操作全解 location物件可以通過window引用也可以通過document引用。location物件 表示載入視窗的url,也可用window.location引用它 location.href 當前載入頁面的完...
linux中history命令使用與配置
history中設定顯示命令的執行時間 vi root bashrc histtimeformat y m d h m s export histtimeformat為了使以上設定生效,執行以下命令 wq source bashrc history命令清除命令執行操作的歷史記錄 history c ...
mac 中 history 命令使用與配置
history chistory命令列出最近執行的n條命令 history 10重複執行上次操作的命令語法 設定儲存1000條操作命令 設定歷史命令記錄數 export histsize 1000 記錄歷史檔案大小 export histfilesize 450指定不同終端執行的命令都儲存在同乙個檔...