Js与下拉列表处理问题解决

复制代码 代码如下:

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;
}
}

你可能感兴趣的:(Js与下拉列表处理问题解决)