即学即用JavaScript核心对象参考手册原版光盘
源代码在线查看: 14.2.1 action属性.html
//提取URL中来自表单中的数据
function analysisInfo()
{
var sSearch=unescape(location.search);
var arrSearch=new Array();
try
{
sSearch=sSearch.substr(1);
arrtemp=sSearch.split("&");
for(var i=0;i {
temp=arrtemp[i].split("=");
arrSearch[temp[0]]=temp[1];
}
return arrSearch;
}
catch(e)
{return false;}
}
//根据名称,获取值
function request(arg)
{
var infos=analysisInfo();
return infos[arg];
}
if (request("usersex")=="0")
sex="女士";
else
sex="先生";
name=request("username");
var age= parseInt(request("userage"));
if(age msg="你还很年轻,你的未来会很美好";
else if (age msg="努力开拓,你的世界会更美好";
else
msg="谢谢你为社会做出的贡献。";
document.write(name+sex+":"+msg);