Skip to content

Instantly share code, notes, and snippets.

@monsterooo
Created April 25, 2019 09:13
Show Gist options
  • Save monsterooo/49c65f6baa57247f01ddefc282ecba2b to your computer and use it in GitHub Desktop.
Save monsterooo/49c65f6baa57247f01ddefc282ecba2b to your computer and use it in GitHub Desktop.
通过url获取qs参数
# 通过url获取qs参数
function getParameterByName(name, url) {
if (!url) url = window.location.href;
name = name.replace(/[\[\]]/g, '\\$&');
var regex = new RegExp('[?&]' + name + '(=([^&#]*)|&|#|$)'),
results = regex.exec(url);
if (!results) return null;
if (!results[2]) return '';
return decodeURIComponent(results[2].replace(/\+/g, ' '));
}
getParameterByName('id')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment