写了这么久的js了,才发现在IE6下对select对象使用innerHTML插入option标签居然会失效.
悲剧了,问同事才知道要使用new option() 突然发现自己二了.
看网上搜集的使用方法:
var oSelect = $(“oSelect”);
oSelect.options.add(new option(“name”, “value”)); //添加
oSelect.options[oSelect.selectedindex] = null; //删除选中项
oSelect.options.length = 0; //删除全部的
oSelect.selectedindex = 1; //设置选中项