`
wasw100
  • 浏览: 125910 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

window.location or window.location.href?

阅读更多

参考:1.http://www.javascriptkit.com/jsref/location.shtml
         2.http://www.highdots.com/forums/javascript-discussion-multi-lingual/window-location-window-location-href-276539.html

 

 

写道
Location contains information about the current URL of the browser. The most common usage of Location is simply to use it to automatically navigate the user to another page:

<script type="text/javascript">
window.location="http://www.google.com"
</script>

 

所以推荐使用window.location,包含更多信息

 

理由(参考文章的第二篇)

写道
Although "window.location.href" also seems to work. The "entire URL"
href property (of window.location) appears to be a bit redundant. Other
properties of "windows.location" could be useful for reading or changing
portions of the URL like domain/host names and port numbers (which are
sometimes not stated - permitted to remain the default).

 

 

--EOF--

 

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics