Skip to content

Instantly share code, notes, and snippets.

@takuoka
Created June 13, 2013 14:34
Show Gist options
  • Save takuoka/5774162 to your computer and use it in GitHub Desktop.
Save takuoka/5774162 to your computer and use it in GitHub Desktop.
URLから特定のパラメータの値をとりだす ref: http://qiita.com/items/b4b0f361863c6d578ea6
slicePalamValue = function(url, key){
return url.split(key+"=")[1].split("&")[0];
}
var url = http://aaaaaaaaa.com/code=ABCDEFG
console.log(slicePalamValue(url,"code")); //ABCDEFG
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment