9. location 对象
location 对象是很特别的一个对象,因为它既是 window 对象的属性,也是document 对象的属性;换句话说, window.location 和 document.location 引用的是同一个对象。
location 对象的所有属性:
属 性 名 | 例 子 | 说 明 |
---|---|---|
hash | “#contents” | 返回URL中的hash(#号后跟零或多个字符),如果URL中不包含散列,则返回空字符串 |
host | “www.wrox.com:80” | 返回服务器名称和端口号(如果有) |
hostname | “blog.21yt.cc” | 返回不带端口号的服务器名称 |
href | “http:/blog.21yt.cc” | 返回当前加载页面的完整URL。而location对象的toString()方法也返回这个值 |
pathname | “/WileyCDA/” | 返回URL中的目录和(或)文件名 |
port | “8080” | 返回URL中指定的端口号。如果URL中不包含端口号,则这个属性返回空字符串 |
protocol | “http:” | 返回页面使用的协议。通常是http:或https: |
search | “?q=javascript” | 返回URL的查询字符串。这个字符串以问号开头 |
function getQueryStringArgs(){
//取得查询字符串并去掉开头的问号
var qs = (location.search.length > 0 ? location.search.substring(1) : ""),
//保存数据的对象
args = {},
//取得每一项
items = qs.length ? qs.split("&") : [],
item = null,
name = null,
value = null,
//在 for 循环中使用
i = 0,
len = items.length;
//逐个将每一项添加到 args 对象中
for (i=0; i < len; i++){
item = items[i].split("=");
name = decodeURIComponent(item[0]);
value = decodeURIComponent(item[1]);
if (name.length) {
args[name] = value;
}
}
return args;
}
//假设查询字符串是?q=javascript&num=10
var args = getQueryStringArgs();
alert(args["q"]); //"javascript"
alert(args["num"]); //"10"
使用 location 对象可以通过很多方式来改变浏览器的位置。首先,也是最常用的方式,就是使用 location.href 和 assign() 方法并为其传递一个 URL,如下所示。
//下面三条语句效果一样
location.assign("http://blog.21yt.cc");
window.location = "http://blog.21yt.cc";
location.href = "http://blog.21yt.cc";
另外,修改 location 对象的其他属性也可以改变当前加载的页面。
//假设初始 URL 为 http://blog.21yt.cc/WileyCDA/
//将 URL 修改为"http://blog.21yt.cc/WileyCDA/#section1"
location.hash = "#section1";
//将 URL 修改为"http://blog.21yt.cc/WileyCDA/?q=javascript"
location.search = "?q=javascript";
//将 URL 修改为"http://www.yahoo.com/WileyCDA/"
location.hostname = "www.yahoo.com";
//将 URL 修改为"http://www.yahoo.com/mydir/"
location.pathname = "mydir";
//将 URL 修改为"http://www.yahoo.com:8080/WileyCDA/"
location.port = 8080;
每次修改 location 的属性( hash 除外),页面都会以新 URL 重新加载。
在 IE8、Firefox 1、Safari 2+、Opera 9+和 Chrome 中,修改 hash 的值会在浏览器的历史记录中生成一条新记录。在 IE 的早期版本中, hash 属性不会在用户单击“后退”和“前进”按钮时被更新,而只会在用户单击包含 hash 的 URL 时才会被更新。
评论
共0 条评论