有只小跳蛙
这个是select选择控件里的选项吧new可以为select控件动态添加选项的给你一个例子吧,有不懂的再问吧//设置店铺等级function SetCategroy(){//如果品牌不为空if(document.form1.DropListBrand){//如果品牌选择的是特惠店if(document.form1.DropListBrand.options[document.form1.DropListBrand.selectedIndex].value == "Discount"){//将原来的店铺等级数据清空document.form1.DropListCategory.options.length = 0;//添加等级为 *,代表特惠店document.form1.DropListCategory.options[0] = new Option("*","*");document.form1.DropListCategory.options[0].selected = true;}//如果不是特惠店else{//如果店铺等级对象不为空if(category){var i = 0;document.form1.DropListCategory.options.length = 0;//将店铺等级对象中的数据添加到等级下拉控件中,为A,B,C,D,Efor(var str in category){document.form1.DropListCategory.options[i] = new Option(str,str);i++;}}}}}