码迷,mamicode.com
首页 > Web开发 > 详细

获取URL参数

时间:2018-05-21 18:01:40      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:substr   null   mat   text   fine   func   ring   name   location   

//获取URL参数
function GetQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg); //获取url中"?"符后的字符串并正则匹配
var context = "";
if(r != null)
context = r[2];
reg = null;
r = null;
return context == null || context == "" || context == "undefined" ? "" : context;
}

获取URL参数

标签:substr   null   mat   text   fine   func   ring   name   location   

原文地址:https://www.cnblogs.com/wangwenhui/p/9068201.html

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