我們來看下面兩種方式:
// 等同於HTTP重定向
window.location.replace("http://");
// 等同於點擊網頁鏈接
window.location.href="http://";
window.location.replace(...) 模擬HTTP重定向的動作,對於window.location.href 來說,replace()並不保存在session中,這代表你無法使用浏覽器的返回鍵來回到上一級頁面,而如果你單純地想模擬一個用戶點擊鏈接事件,那麼使用location.href即可.