1.
window.location.href="url"; //这行代码的功能,就是实现页面跳转! //这种方法,是最常用的页面跳转的方法!
注:
a.window.location.href="url"; 可以简写为 window.location="url";
b.因为location对象的默认属性,就是href属性!!!
----------
参考:
1.
window.location是页面的位置对象,window.location.href是 location的一个属性值,并且它是location的默认属性就是说对window.location直接赋值一个url实际上就是对window.location.href赋值。location对象除了有href属性外还有很多其他属性和方法