常用的 JavaScript 跳轉代碼有以下幾種:
window.location.href
跳轉頁面:window.location.href = "http://www.example.com";
window.location.replace
跳轉頁面(替換當前頁面而不是創建新的歷史記錄):window.location.replace("http://www.example.com");
window.location.assign
跳轉頁面(創建新的歷史記錄):window.location.assign("http://www.example.com");
window.location.reload
刷新頁面:window.location.reload();
window.open
在新窗口或標簽頁中打開頁面:window.open("http://www.example.com");
location.replace
跳轉頁面(替換當前頁面而不是創建新的歷史記錄):location.replace("http://www.example.com");
location.assign
跳轉頁面(創建新的歷史記錄):location.assign("http://www.example.com");
注意:以上代碼中的 URL 可以替換為你要跳轉的目標頁面的 URL。