解析浏览器地址栏查询字符串参数

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;
}

以上是关于解析浏览器地址栏查询字符串参数的主要内容,如果未能解决你的问题,请参考以下文章

<a>标签地址栏跳转带中文参数,地址栏中文怎么没有被编码?

DNS原理及其解析过程

从浏览器地址栏输入URL到浏览器呈现数据全过程解析

Form.action传值问题

js获取地址栏各种值

DNS的原理和解析过程