Created
December 6, 2012 03:15
-
-
Save yoshifumi0521/4221557 to your computer and use it in GitHub Desktop.
javascriptでパラメーターを取得するためのメソッド。getParameterメソッドを定義する。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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