Skip to content

Instantly share code, notes, and snippets.

@gucheen
Created May 12, 2014 03:07
Show Gist options
  • Save gucheen/3aeecc7fce63ee0a37b7 to your computer and use it in GitHub Desktop.
Save gucheen/3aeecc7fce63ee0a37b7 to your computer and use it in GitHub Desktop.
获取url参数
var getQueryStringRegExp = function(name) {
var reg = new RegExp("(^|\\?|&)" + name + "=([^&]*)(\\s|&|$)", "i");
if (reg.test(location.href)) return unescape(RegExp.$2.replace(/\+/g, " "));
return null;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment