码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2018-03-28 22:04:40      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:ash   location   doc   new   pre   name   UNC   3.2   pattern   

//地址栏获取参数
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积分项目)

标签:ash   location   doc   new   pre   name   UNC   3.2   pattern   

原文地址:https://www.cnblogs.com/ourLifes/p/8666140.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!