📜  导航到 url jquery - Javascript 代码示例

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

代码示例1
//As an HTTP redirect (back button will not work )
window.location.replace("http://www.google.com");

//like if you click on a link (it will be saved in the session history, 
//so the back button will work as expected)
window.location.href = "http://www.google.com";