代码语法:
window.location.replace(“destination-page-url”);
例1:
我们可以在JavaScript中使用 window.location.replace用户重定向到其他页面。 window.location.replace 类似于HTTP重定向。window.location.replace("https://www.youcl.com");
例2:
这是更好 window.location.href 替代 window.location.replace方法,因为 replace() 函数不把原始页面会话放入历史记录。window.location.href = "https://www.youcl.com";
例3:
我们也可以简单地使用了window.location重定向到任何内部网站的页面。window.location.href = "/page2/";