var tmpsortarray = new Array(); tmpsortarray[0] = new Array('0','13','纪念服装'); tmpsortarray[1] = new Array('0','32','球员比赛服'); tmpsortarray[2] = new Array('0','33','T恤'); tmpsortarray[3] = new Array('33','34','男款'); tmpsortarray[4] = new Array('13','20','休闲商务服'); tmpsortarray[5] = new Array('33','35','女款'); tmpsortarray[6] = new Array('0','23','纪念精品'); tmpsortarray[7] = new Array('13','29','外套'); tmpsortarray[8] = new Array('23','26','室内用品'); tmpsortarray[9] = new Array('23','25','文体用品'); tmpsortarray[10] = new Array('23','24','小饰品'); tmpsortarray[11] = new Array('13','21','裤子'); tmpsortarray[12] = new Array('23','27','海报'); tmpsortarray[13] = new Array('13','22','袜子'); tmpsortarray[14] = new Array('23','37','手表'); tmpsortarray[15] = new Array('0','38','冬装'); tmpsortarray[16] = new Array('0','36','总冠军纪念品'); //======== begin 分类 function changelocation(locationid,selectname) { document.getElementById(selectname).length = 0; var locationid=locationid; var i; document.getElementById(selectname).options[0] = new Option('Choose','0'); for (i=0;i < tmpsortarray.length; i++) { if (tmpsortarray[i][0] == locationid) { document.getElementById(selectname).options[document.getElementById(selectname).length] = new Option(tmpsortarray[i][2], tmpsortarray[i][1]); } } } //初始化选择 function show_prename(locationid,selectname,myselect){ document.getElementById(selectname).length = 0; var locationid=locationid; var i; document.getElementById(selectname).options[0] = new Option('Choose','0'); for (i=0;i < tmpsortarray.length; i++) { if (tmpsortarray[i][0] == locationid) { document.getElementById(selectname).options[document.getElementById(selectname).length] = new Option(tmpsortarray[i][2], tmpsortarray[i][1]); if(tmpsortarray[i][1]==myselect){ document.getElementById(selectname).options[document.getElementById(selectname).length-1].selected=true; } } } } //======== end 分类