JS获取URL参数

2020-11-26 23:24

阅读:784

标签:js

使用JavaScript获取URL上的参数值
方法一:
function getUrlParam(name) { 
    var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); //构造一个含有目标参数的正则表达式对象 
    var r = window.location.search.substr(1).match(reg); //匹配目标参数 
    if (r != null) return unescape(r[2]); return null; //返回参数值 
}
方法二:

function GetRequest() {

   var url = location.search;//获取url中"?"符后的字串

   var theRequest = new Object();

   if (url.indexOf("?") != -1) {

      var str = url.substr(1);

      strs = str.split("&");

      for(var i = 0; i

         theRequest[strs[i].split("=")[0]]=unescape(strs[i].split("=")[1]);

      }

   }

   return theRequest;

}


var Request = new Object();
Request = GetRequest();

var 参数1,参数2,参数3,参数N;

参数1 = Request[‘参数1‘];

参数2 = Request[‘参数2‘];

参数3 = Request[‘参数3‘];

参数N = Request[‘参数N‘];

JS获取URL参数,搜素材,soscw.com

JS获取URL参数

标签:js

原文地址:http://blog.csdn.net/cjw13860421089/article/details/24968979


评论


亲,登录后才可以留言!