📌  相关文章
📜  重定向到另一个网页? - Javascript代码示例

📅  最后修改于: 2022-03-11 15:03:51.633000             🧑  作者: Mango

代码示例3
// similar behavior as an HTTP redirect
window.location.replace("http://codegrepper.com");

// similar behavior as clicking on a link
window.location.href = "http://codegrepper.com";

window.location.href; // Returns the href (URL) of the current page
window.location.hostname; // Returns the domain name of the web host
window.location.pathname; // Returns the path and filename of the current page
window.location.protocol; // Returns the web protocol used (http: or https:)
window.location.assign; // Loads a new document
window.location.replace; // RReplace the current location with new one.