JavaScript获取地址栏内容

例如地址为:http://www.mazey.net/baby/blog/index.php?a=1&b=2#c

var query = window.location.href;	//http://www.mazey.net/baby/blog/index.php?a=1&b=2#c
var query = window.location.host;	//www.mazey.net

1、window.location.href
说明:整个地址栏字符串(在浏览器中就是完整的地址栏)
本例返回值: http://www.mazey.net/baby/blog/index.php?a=1&b=2#c

2、window.location.protocol
说明:地址栏的协议部分
本例返回值:http:

3、window.location.host
说明:地址栏的主机部分
本例返回值:www.mazey.net

4、window.location.port
说明:地址栏的端口部分,实际上返回空字符
本例返回值:""

5、window.location.pathname
说明:地址栏的路径部分(就是文件地址)
本例返回值:/baby/blog/index.php

6、window.location.search
说明:查询(参数?&)部分
本例返回值:?a=1&b=2

7、window.location.hash
说明:锚点部分(#)
本例返回值:#c

发表评论

您的电子邮箱地址不会被公开。