js获取当前页面的url网址信息
更新时间:2014年06月12日 15:26:07 投稿:whsnow
这篇文章主要介绍了通过js如何获取当前页面的url网址信息,需要的朋友可以参考下
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.length);
// alert(url.lastIndexOf('='));
var loc = url.substring(url.lastIndexOf('=')+1, url.length);
6、设置或获取 URL 的协议部分:
window.location.protocol
7、设置或获取 href 属性中在井号“#”后面的分段:
window.location.hash
8、设置或获取 location 或 URL 的 hostname 和 port 号码:
window.location.host
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.length);
// alert(url.lastIndexOf('='));
var loc = url.substring(url.lastIndexOf('=')+1, url.length);
6、设置或获取 URL 的协议部分:
window.location.protocol
7、设置或获取 href 属性中在井号“#”后面的分段:
window.location.hash
8、设置或获取 location 或 URL 的 hostname 和 port 号码:
window.location.host
相关文章
js change,propertychange,input事件小议
github上关于mootools一个issue的讨论很有意思,所以就想测试记录下。感兴趣的可以点击原页面看看2011-12-12layui监听下拉选框选中值变化的方法(包含监听普通下拉选框)
今天小编大家分享一篇layui监听下拉选框选中值变化的方法(包含监听普通下拉选框),具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧2019-09-09JavaScript事件Event对象详解(属性、方法、自定义事件)
Event对象代表事件的状态,比如事件在其中发生的元素、键盘按键的状态、鼠标的位置、鼠标按钮的状态,这篇文章主要给大家介绍了关于JavaScript事件Event对象(属性、方法、自定义事件)的相关资料,需要的朋友可以参考下2024-01-01JavaScript中for...in、for...of和for await...of迭代方式
方法2023-04-04
最新评论