Skip to content

Instantly share code, notes, and snippets.

@TennousuAthena
Created April 28, 2019 11:30
Show Gist options
  • Save TennousuAthena/72831e56ef42910d5b05fe256d52cb68 to your computer and use it in GitHub Desktop.
Save TennousuAthena/72831e56ef42910d5b05fe256d52cb68 to your computer and use it in GitHub Desktop.
获取URL查询参数
q={};location.search.replace(/([^?&=]+)=([^&]+)/g,(_,k,v)=>q[k]=v);q;
//Done!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment