标签:
常常使用window.location。它的结构总是记不住。简单梳理下。方便以后查询。
URL:http://b.a.com:88/index.php?
name=kang&when=2011#first
属性 | 含义 | 值 |
---|---|---|
protocol: | 协议 | "http:" |
hostname: | server的名字 | "b.a.com" |
port: | port | "88" |
pathname: | URL中主机名后的部分 | "/index.php" |
search: |
"? "后的部分,又称为查询字符串 |
"?name=kang&when=2011" |
hash: | 返回"#"之后的内容 | "#first" |
host: | 等于hostname + port | "b.a.com:88" |
href: | 当前页面的完整URL | "http://www.a.com:88/index.php?name=kang&when=2011#first" |
window.location和document.location互相等价的,能够交换使用
location的8个属性都是可读写的。可是仅仅有href与hash的写才有意义。比如改变location.href会又一次定位到一个URL,而改动location.hash会跳到当前页面中的anchor(<a id="name">或者<div id="id">等)名字的标记(假设有)。并且页面不会被又一次载入
URL:http://b.a.com:88/index.php?
name=kang&how=#when=2011#first
search: | "?name=kang&how=" |
第一个"? "之后 |
hash: | "#when=2011#first" | 第一个"#"之后的内容 |
版权声明:本文博主原创文章,博客,未经同意不得转载。
标签:
原文地址:http://www.cnblogs.com/gcczhongduan/p/4875727.html