JavaScriptを使用してページ間でパラメータを渡す方法
著者:Eve Cole
更新時間:2009-06-08 18:34:32
関数 getparastr(strname)
{
var hrefstr,pos,parastr,para,tempstr;
hrefstr = window.location.href;
pos = hrefstr.indexOf("?")
parastr = hrefstr.substring(pos+1);
para = parastr.split("&");
tempstr="";
for(i=0;i<para.length;i++)
{
tempstr = パラ[i];
pos = tempstr.indexOf("=");
if(tempstr.substring(0,pos) == strname)
{
tempstr.substring(pos+1) を返します。
}
}
null を返します。
}
// 取得プログラムパラメータ
var プログラムstr = getparastr("プログラム");
document.write(programstr);