window.location = "http://www.xxxxxxxx.net" 跳轉后有后退功能
其實應該是 window.location.href
window.location.replace("http://www.xxxxxxxx.net") 跳轉后沒有后退功能
window.open("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()刷新最頂端對象(用於多開窗口)
