知识点备忘——<select>

来源:互联网 发布:linux mysql 关闭 编辑:程序博客网 时间:2024/06/06 00:51

1. 清空select的option项:selectElement.length=0;

2. 加入option:selectElement.add(new Option('文本','值'));

3. 删除option:  selectElement.options.remove(optionIdx);