获取地址栏参数(E积分项目)

Posted 南夏de博客

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取地址栏参数(E积分项目)相关的知识,希望对你有一定的参考价值。

//地址栏获取参数
function getQueryString(name) {
  var search = document.location.hash;
  var pattern = new RegExp("[?&]" + name + "\=([^&]+)", "g");
  var matcher = pattern.exec(search);
  var items = null;
  if (null != matcher) {
    try {
      items = decodeURIComponent(decodeURIComponent(matcher[1]));
    } catch (e) {
      try {
        items = decodeURIComponent(matcher[1]);
      } catch (e) {
        items = matcher[1];
      }
    }
  }
  return items;
}

传的时候:

$(function() {
    $(".Jump").click(function(){
			window.location.href=‘http://10.133.254.129:9000/#/card-search-result?result=123456‘
		});
	})

  

取的时候  let result = getQueryString(‘result‘);

以上是关于获取地址栏参数(E积分项目)的主要内容,如果未能解决你的问题,请参考以下文章

JS获取URL的参数

js如何获取地址栏的参数

操作栏选项卡:使用多次实例化的单个片段时如何传递参数

JS 获取html地址栏后参数的问题??

JS获取URL传的值与解决获取URL中的中文参数出现乱码

获取当前地址栏参数