您的位置:成都3c购物 >> 资讯中心 >> HTML页面如何象ASP一样接受参数-JavaScript教程
HTML页面如何象ASP一样接受参数-JavaScript教程
转载自:互联网 作者:cd3c.com
您正在看的JavaScript教程是:HTML页面如何象ASP一样接受参数。
var pos,str,para,parastr,tempstr1;
tempstr="";
str = window.location.href;
pos = str.indexOf("?")
parastr = str.substring(pos+1);
document.write("
文件路径:"+str);
if (pos>0){
document.write("
所有参数:"+parastr);
}
else
{
document.write ("无参数");
}
if (str.indexOf("&")>0){
para = parastr.split("&");
for(i=0;i { tempstr1 = para[i]; pos = tempstr1.indexOf("="); //document.write (tempstr1.substring(0,pos)); document.write (" document.write ("等于:"+tempstr1.substring(pos+1)); } } <
参数"+i+":"+tempstr1.substring(0,pos));
