作者:

HTML中Select标签js使用方法

写了这么久的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;                                                    //设置选中项

发表评论

评论

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据