location对象

Posted lujieting

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了location对象相关的知识,希望对你有一定的参考价值。

//对象中的属性和方法
//location 对象
console.log(window.location);


//地址栏上#及后面的内容
console.log(window.location.hash);
//主机及端口号
console.log(window.location.host);
//主机名
console.log(window.location.hostname);
//文件的路径----相对路径
console.log(window.location.pathname);
//端口号
console.log(window.location.port);
//协议
console.log(window.location.protocol);
//搜索的内容
console.log(window.location.search);


//设置跳转的页面地址
location.href="http://www.baidu.com";//属性-----
location.assign("http://www.baidu.com");//方法
location.reload();//重新加载
location.replace("http://www.baidu.com");//没有历史记录----不能返回原页面

























以上是关于location对象的主要内容,如果未能解决你的问题,请参考以下文章

Location对象

location 对象

从 JUnit 单元测试中设置 android.location.Location 对象的参数

BOM--location对象history对象

location对象

location属性解释 - window.location & $location