js获取当前页面的url信息方法

例如网址:http://localhost:12085/My/OrderM.aspx

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

alert(window.location.pathname)

输出结果:/My/OrderM.aspx

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

alert(window.location.href);

输出结果:http://localhost:12085/My/OrderM.aspx

设置或获取与 URL 关联的端口号码。

alert(window.location.port)

设置或获取 URL 的协议部分。

alert(window.location.protocol)

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

alert(window.location.hash)

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

alert(window.location.host)

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

alert(window.location.search)

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

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

时间: 2024-10-07 13:28:51

js获取当前页面的url信息方法的相关文章

如何用js得到当前页面的url信息方法(JS获取当前网址信息)

设置或获取对象指定的文件名或路径. alert(window.location.pathname) 设置或获取整个 URL 为字符串. alert(window.location.href); 设置或获取与 URL 关联的端口号码. alert(window.location.port) 设置或获取 URL 的协议部分. alert(window.location.protocol) 设置或获取 href 属性中在井号“#”后面的分段. alert(window.location.hash) 设

js得到当前页面的url信息方法(JS获取当前网址信息)

1.设置或获取整个 URL 为字符串: window.location.href 2.设置或获取与 URL 关联的端口号码: window.location.port 3.设置或获取 URL 的协议部分 window.location.protocol 4.设置或获取 href 属性中跟在问号后面的部分 window.location.search 5.获取变量的值(截取等号后面的部分) var url = window.location.search;//    alert(url.lengt

如何用js得到当前页面的url信息方法

设置或获取对象指定的文件名或路径. alert(window.location.pathname) 设置或获取整个 URL 为字符串. alert(window.location.href); 设置或获取与 URL 关联的端口号码. alert(window.location.port) 设置或获取 URL 的协议部分. alert(window.location.protocol) 设置或获取 href 属性中在井号“#”后面的分段. alert(window.location.hash) 设

js获取当前页面的URL信息

window.location属性 描述 hash 设置或获取 href 属性中在井号"#"后面的分段. host 设置或获取 location 或 URL 的 hostname 和 port 号码. hostname 设置或获取 location 或 URL 的主机名称部分. href 设置或获取整个 URL 为字符串. pathname 设置或获取对象指定的文件名或路径. port 设置或获取与 URL 关联的端口号码. protocol 设置或获取 URL 的协议部分. sear

js获取当前页面的url网址信息小汇总

在WEB开发中,时常会用到javascript来获取当前页面的url网址信息,在这里是我的一些获取url信息的小总结. 下面我们举例一个URL,然后获得它的各个组成部分:http://i.cnblogs.com/EditPosts.aspx?opt=1 1.window.location.href(设置或获取整个 URL 为字符串) var test = window.location.href; alert(test); 返回:http://i.cnblogs.com/EditPosts.as

用js获取当前页面的url的相关信息方法

1. 当前页面的完整url获取方式: window.localtion.url; 2. pathname部分: window.location.pathname 3. 设置或获取对象指定的文件名或路径. alert(window.location.pathname) 设置或获取整个 URL 为字符串. alert(window.location.href); 设置或获取与 URL 关联的端口号码. alert(window.location.port) 设置或获取 URL 的协议部分. aler

【网摘】JS 或 jQuery 获取当前页面的 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

JQUERY脚本中获取当前页面的URL信息(转)

以前在做网站的时候,经常会遇到当前页的分类高亮显示,以便让用户了解当前处于哪个页面.之前一直是在每个不同页面写方法.工程量大,也不便于修改.一直在想有什么简便的方法实现.后来在网上查到可以用获取当前URL的详细信息来判断.所以收集了JQUERY获取URL的函数的资料. 设置或获取对象指定的文件名或路径.window.location.pathname例:http://localhost:8086/topic/index?topicId=361alert(window.location.pathn

jquery获取当前页面的URL信息

设置或获取对象指定的文件名或路径.window.location.pathname例:http://localhost:8086/topic/index?topicId=361alert(window.location.pathname); 则输出:/topic/index 设置或获取整个 URL 为字符串.window.location.href例:http://localhost:8086/topic/index?topicId=361alert(window.location.href);