javascript 页面跳转方法集合
作者:
js 中实现页面跳转的方法(window.location和window.open的区别)
[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
window.location和window.open的区别
window.location = "https://www.jb51.net" 跳转后有后退功能
window.location.replace("https://www.jb51.net") 跳转后没有后退功能
window.open("https://www.jb51.net") 要新的窗口打开链接