Category Ajax,JavaScript Update 2009.11.30
jqueryで
http://hogehoge.com/index.htm?cid=xx
とかのget引数を取り扱いたく、色々調べたところ
http://jquery-howto.blogspot.comさんに情報がありました。
function getUrlVars()
{
var vars = [], hash;
var hashes = window.location.href.slice(window.location.href.indexOf(‘?’) + 1).split(‘&’);
for(var i = 0; i < hashes.length; i++)
{
hash = hashes[i].split('=');
vars.push(hash[0]);
vars[hash[0]] = hash[1];
}
return vars;
}
[/code]
上記のfunctionに
[code]
http://hogehoge.com/index.htm?cid=xx
[/code]
であれば
[code]
getUrlVars()["cid"];
[/code]
で使用できるみたいです。
便利ですね!