window.location = "http://www.xxxxxxxx.net" 跳轉後有後退功能
其實應該是 window.location.href
window.location.replace("http://www.xxxxxxxx.net") 跳轉後沒有後退功能
window.open("http://www.xxxxxxxx.net") 要新的視窗開啟連結
這個一般用於簡單的彈出頁面,現在基本上都被遮蔽掉了window.location.reload();window.location = "/Admin/UserList";window.open("/Admin/UserList");
window.location.href = "/Admin/UserList";
window.location.reload()重新整理當前頁面.
parent.location.reload()重新整理父親物件(用於框架)
opener.location.reload()重新整理父視窗物件(用於單開視窗)
top.location.reload()重新整理最頂端物件(用於多開視窗)
都是重定向
window.location = "http://www.xxxxxxxx.net" 跳轉後有後退功能
其實應該是 window.location.href
window.location.replace("http://www.xxxxxxxx.net") 跳轉後沒有後退功能
window.open("http://www.xxxxxxxx.net") 要新的視窗開啟連結
這個一般用於簡單的彈出頁面,現在基本上都被遮蔽掉了window.location.reload();window.location = "/Admin/UserList";window.open("/Admin/UserList");
window.location.href = "/Admin/UserList";
window.location.reload()重新整理當前頁面.
parent.location.reload()重新整理父親物件(用於框架)
opener.location.reload()重新整理父視窗物件(用於單開視窗)
top.location.reload()重新整理最頂端物件(用於多開視窗)
都是重定向