通过js获取当前页面url的信息

栏目: JavaScript · 发布时间: 6年前

内容简介:在web前端制作中,可以通过javascript获取当前网页url的相关信息,整理如下:1、设置或获取对象指定的文件名或路径2、设置或获取整个URL为字符串

在web前端制作中,可以通过javascript获取当前网页url的相关信息,整理如下:

1、设置或获取对象指定的文件名或路径

window.location.pathname

2、设置或获取整个URL为字符串

window.location.href

3、设置或获取与URL关联的端口号

window.location.port

4、设置或获取URL的协议部分

window.location.protocol

5、设置或获取href属性中在井号“#”后面的分段

window.location.hash

6、设置或获取location或URL的hostname和port号码

window.location.host

7、设置或获取href属性中跟在问号后面的部分

window.location.search

8、获取变量的值(截取等号后面的部分)

var url = window.location.search;
alert(url.length);
alert(url.lastIndexOf('='));
var loc = url.substring(url.lastIndexOf('=')+1, url.length);

9、获取当前网页的域名

document.domain

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Developer's Guide to Social Programming

Developer's Guide to Social Programming

Mark D. Hawker / Addison-Wesley Professional / 2010-8-25 / USD 39.99

In The Developer's Guide to Social Programming, Mark Hawker shows developers how to build applications that integrate with the major social networking sites. Unlike competitive books that focus on a s......一起来看看 《Developer's Guide to Social Programming》 这本书的介绍吧!

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

Markdown 在线编辑器
Markdown 在线编辑器

Markdown 在线编辑器

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具