操作select和option

//获取options的长度,删除所有直接赋值等于0
obj.options.length
//获得索引
obj.selectedIndex[index]; 
//获得索引文本
obj.selectedIndex[index].text
//获得索引value
obj.selectedIndex[index].value
//添加选项option
 obj.options.add(new Option("文本","值")); //这个兼容IE与firefox 
//修改选项option
var val = obj.options[index]=new Option("新文本","新值");


你可能感兴趣的:(操作select和option)