Skip to content

Instantly share code, notes, and snippets.

@yoshifumi0521
Created December 6, 2012 03:15
Show Gist options
  • Save yoshifumi0521/4221557 to your computer and use it in GitHub Desktop.
Save yoshifumi0521/4221557 to your computer and use it in GitHub Desktop.
javascriptでパラメーターを取得するためのメソッド。getParameterメソッドを定義する。
<!DOCTYPE html>
<html>
<head>
<title>javascriptでパラメーターを取得。</title>
</head>
<body>
<p>"index.html?key=1&name=taro"でアクセスする。</p>
<script>
//getParameterメソッドを定義する。keyは、パラメーターの名前をいれる。
function getParameter(key) {
//パラメーターを配列で取得する。
var str = location.search.split("?");
if (str.length < 2) {
return "";
}
var params = str[1].split("&");
for (var i = 0; i < params.length; i++) {
var keyVal = params[i].split("=");
if (keyVal[0] == key && keyVal.length == 2) {
return decodeURIComponent(keyVal[1]);
}
}
return "";
}
//パラメーターを取得する。
console.log("keyの値は、"+getParameter("key"));
console.log("nameの値は、"+getParameter("name"));
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment