解析浏览器地址栏查询字符串参数
Posted aleng-liu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解析浏览器地址栏查询字符串参数相关的知识,希望对你有一定的参考价值。
function getQuery() {
let search = location.search.length > 0 ? location.search.substr(1) : ‘‘;
if (!search) return null;
let Query = {};
if (search.includes(‘&‘)) {
let strArray = search.split(‘&‘);
strArray.forEach(item => {
if (item.includes(‘=‘)) {
let arr = item.split(‘=‘);
Query[decodeURIComponent(arr[0])] = decodeURIComponent(arr[1])
}
})
} else {
let arr = item.split(‘=‘);
Query[decodeURIComponent(arr[0])] = decodeURIComponent(arr[1])
}
return Query;
}
以上是关于解析浏览器地址栏查询字符串参数的主要内容,如果未能解决你的问题,请参考以下文章