js如何实现页面跳转(大全) 一.总结 一句话总结: 1.location的href属性: js跳转主要是通过window的location对象的href属性,因为location对象本来就是表示的浏览器窗口window的location,那肯定就是这个决定网页的url. 2.open方法 3.history对象的三个方法 4.location的assign方法 1.js跳转的本质是什么? 解答:浏览器对象窗口location(url)的改变, 2.js中的window的location对象和网…