Js与下拉列表处理问题解决_javascript技巧
时间:2021-07-01 10:21:17
帮助过:4人阅读
代码如下:
var obj=document.getElementByIdx("test");
if(0//obj.options.remove(obj.selectedIndex); //IE 可用
obj.options[obj.selectedIndex]=null;//IE FF 均可
for(var i=0;iobj.options[i].text="子项"+i;
obj.options[i].value=i;
}
if(0obj.options[0].selected=true;
}
}