location对象属性(一)

  1. window.location 对象用于获得当前页面的地址 (URL)
  2. window.location 对象在编写时可不使用 window 这个前缀。
  3. location 对象是 Window 对象的一个部分,可通过 window.location 属性来访问。

hash:

定义:hash 属性是一个可读可写的字符串,该字符串是 URL 的锚部分(从 # 号开始的部分)。

语法:location.hash=anchorname(锚名)

例子:

1.

function test(){

       var x = window.open("http://example.com:1234/test.htm")

       x.location.hash="#part2";

}

调用函数之后,回跳到http://example.com:1234/test.htm#part2

2.

假如当前 URL 是: http://example.com:1234/test.htm#part2

alert(location.hash);//#part2

 

host:

定义:host 属性是一个可读可写的字符串,可设置或返回当前 URL 的主机名称和端口号。

语法:location.host

例子:

假设当前的 URL 是: http://example.com:1234/test.htm#part2

alert(location.host);//example.com:1234

 

hostname:

定义:hostname 属性是一个可读可写的字符串,可设置或返回当前 URL 的主机名。

语法:location.hostname

例子:

假设当前的 URL 是: http://example.com:1234/test.htm#part2

alert(location.hostname)//example.com

 

href:

定义:href 属性是一个可读可写的字符串,可设置或返回当前显示的文档的完整 URL。因此,我们可以通过为该属性设置新的 URL,使浏览器读取并显示新的 URL 的内容。

语法:location.href=URL

例子:

假设当前的 URL 是: http://example.com:1234/test.htm#part2

alert(location.href)//http://example.com:1234/test.htm#part2

 

pathname:

定义:pathname 属性是一个可读可写的字符串,可设置或返回当前 URL 的路径部分。

语法:location.pathname=path

例子:

假设当前的 URL 是: http://example.com:1234/test/test.htm#part2

alert(location.pathname)///test/test.htm

 

port:

定义:port 属性是一个可读可写的字符串,可设置或返回当前 URL 的端口部分。

语法:location.port=portnumber

例子:

假设当前的 URL 是: http://example.com:1234/test.htm#part2

alert(location.port)//1234

 

protocol:

定义:protocol 属性是一个可读可写的字符串,可设置或返回当前 URL 的协议。

语法:location.protocol=path

例子:

假设当前的 URL 是: http://example.com:1234/test.htm#part2

alert(location.protocol)//http:

 

search:

定义:search 属性是一个可读可写的字符串,可设置或返回当前 URL 的查询部分(问号 ? 之后的部分)。

语法:location.search=path_from_questionmark

例子:

假设当前的 URL 是: http://www.w3school.com.cn/tiy/t.asp?f=hdom_loc_search

alert(location.search)//?f=hdom_loc_search

 

 

 

 

你可能感兴趣的:(location对象属性(一))