页面跳转

1.

window.location.href="url";          //这行代码的功能,就是实现页面跳转!    //这种方法,是最常用的页面跳转的方法!


注:

a.window.location.href="url";  可以简写为 window.location="url";    

b.因为location对象的默认属性,就是href属性!!!



----------

参考:

1.http://zhidao.baidu.com/link?url=spQ5AiJdD6yGfhY6oJOSUnFrZdhjWWEeC1EYPaS4aaZXJUu9Ue-HywRL90OrDZNW8FvNTib8fU_-1A2CeHnIeq

window.location是页面的位置对象,window.location.href是 location的一个属性值,并且它是location的默认属性就是说对window.location直接赋值一个url实际上就是对window.location.href赋值。location对象除了有href属性外还有很多其他属性和方法


你可能感兴趣的:(页面跳转)