關於js中"window.location.href"、"location.href"、"parent.location.href"、"top.location.href"的用法html
"window.location.href"、"location.href"是本頁面跳轉spa
"parent.location.href"是上一層頁面跳轉orm
"top.location.href"是最外層的頁面跳轉htm
舉例說明:對象
若是A,B,C,D都是aspx,D是C的iframe,C是B的iframe,B是A的iframe,若是D中js這樣寫blog
"window.location.href"、"location.href":D頁面跳轉get
"parent.location.href":C頁面跳轉iframe
"top.location.href":A頁面跳轉io
若是D頁面中有form的話,form
<form>: form提交後D頁面跳轉
<form target="_blank">: form提交後彈出新頁面
<form target="_parent">: form提交後C頁面跳轉
<form target="_top"> : form提交後A頁面跳轉
關於頁面刷新,D 頁面中這樣寫:
"parent.location.reload();": C頁面刷新 (固然,也能夠使用子窗口的 opener 對象來得到父窗口的對象:window.opener.document.location.reload(); )
"top.location.reload();": A頁面刷新