刚写了一个 这是html 你改一下把下面这是javascript//定义一个二维数组two,用于存放二级分类名称。 var two=new Array(); two[0]=new Array(); two[1]=new Array(); two[2]=new Array(); two[3]=new Array(); two[4]=new Array(); //赋值,每个一级分类的二级分类存放于数组的一行。 two[0][0]="--请选择--" two[1][0]="--请选择--" two[1][1]="计算机类"; two[1][2]="科学类"; two[1][3]="文学类"; two[1][4]="杂志类"; two[1][5]="法律类"; two[2][0]="--请选择--" two[2][1]="春装"; two[2][2]="夏装"; two[2][3]="秋装";two[2][4]="冬装";two[3][0]="--请选择--" two[3][1]="碳酸饮料"; two[3][2]="果汁类"; two[3][3]="牛奶"; two[4][0]="--请选择--"two[4][1]="家用电器"; two[4][2]="商用电器";function Change() {var i,Index; Index=document.form.oneclass.selectedIndex; iCount=0; while (two[Index][iCount]!=null) iCount++;//计算选定一级分类的二级分类个数 document.form.twoclass.length=iCount;//改变下拉菜单的选项数 for (i=0;i<=iCount-1;i++)//改变下拉菜单的内容 document.form.twoclass[i]=new Option(two[Index][i]); document.form.twoclass.focus(); }