location.href/location.search/location.pathname区别及用法

location.href/location.search/location.pathname区别及用法location.href/location.search/location.pathname区别及用法:location.pathname: 返回URL的域名(域名IP)后的部分。例如 http://www.example.com/wordpress/返回/wordpress/,又或则 http://127.0.0.1/index.html 返回/index.html

location.href/location.search/location.pathname区别及用法:

location.pathname: 返回URL的域名(域名IP)后的部分。

例如 http://www.example.com/wordpress/返回/wordpress/,
又或则 http://127.0.0.1/index.html 返回/index.html,
注意是带url的域名或域名IP

在磁盘上随便建个Html文件进行location.pathname测试,如浏览器上的路径是: C:\Documents and Settings\Administrator\桌面\testjs.html, 这样,得到的结果是: /C:\Documents and Settings\Administrator\桌面\testjs.html

既然提到这了,那我们就分析下下面的URL:

http://www.example.com:8080/test.PHP?user=admin&pwd=admin#login

想得到整个如上的完整url,我们用:location.href; 
得到传输协议http:,我们用:location.protocol; 
得到主机名连同端口www.example.com:8080,我们用:location.host; 
得到主机名www.joymood.cn,我们用:location.hostname; 
得到主机后部分不包括问号?后部分的/test.php,就用我们刚才讲的:location.pathname; 
得到url中问号?之后井号#之前的部分?user=admin&pwd=admin,我们就用: location.search; 
得到#之前的部分#login,我们就用location.hash

如上,我们可以通过location对象的某些属性得到一个完整URL的各个部分。

js中的应用:

无刷新更新地址栏:

<script>

$(document).ready(function(){

    //更新地址栏
    top.window.history.replaceState(null, null, “#” + window.location.pathname + location.search);
});

</script>

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/36950.html

(0)
编程小号编程小号

相关推荐

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注