欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js获取地址栏中的数据

程序员文章站 2022-07-09 21:19:23
window.location.href:设置或获取整个 URL 为字符串window.location.pathname:设置或获取对象指定的文件名或路径window.location.search:设置或获取 href 属性中跟在问号后面的部分要获取变量的值可以试试:var urlParam= ......

window.location.href:设置或获取整个 url 为字符串
window.location.pathname:设置或获取对象指定的文件名或路径
window.location.search:设置或获取 href 属性中跟在问号后面的部分
要获取变量的值可以试试:
var urlparam= window.location.search;
var loc = urlparam.substring(urlparam.lastindexof('=')+1, urlparam.length);
如果是多个参数可以分布切割,得到多个键值对。
参考文章链接:https://blog.csdn.net/gotofind/article/details/78961694