您的位置首页百科知识

window.location.href 和window.location的区别

window.location.href 和window.location的区别

的有关信息介绍如下:

window.location.href 和window.location的区别

window.location是页面的位置对象,window.location.href是 location的一个属性值,并且它是location的默认属性就是说对window.location直接赋值一个url实际上就是对window.location.href赋值。location对象除了有href属性外还有很多其他属性和方法,而href就是一个字符串只不过修改location的href会触发浏览器加载 href所指向的url因此不存在前者速度比后者快的。btw:你判断前者比后者快的依据是什么?事实上,加载同一个url的速度不一定每次都一样,这个受当时的网络状况,页面内容是否已经有被缓存等有关。