location.search的正则获取url的参数记录

sProp是需要获取的参数

getParameter(sProp) {
                var re = new RegExp(sProp + "=([^\&]*)", "i");
                var a = re.exec(document.location.search);
                if (a == null)
                    return null;
                return a[1];
            },

你可能感兴趣的:(location.search的正则获取url的参数记录)