清空select标签中option选项的4种不同方式

Posted sharpest

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了清空select标签中option选项的4种不同方式相关的知识,希望对你有一定的参考价值。

转自:https://blog.csdn.net/pt_sm/article/details/53521560

方法一 

document.getElementById("selectid").options.length = 0; 


方法二 

document.formName.selectName.options.length = 0; 


方法三 

document.getElementById("selectid").innerhtml = ""; 不知道为了什么,只有这个方法三灵
方法4:
document.getElementById("selectid").Empty()


以上是关于清空select标签中option选项的4种不同方式的主要内容,如果未能解决你的问题,请参考以下文章

怎么改变select标签的option列表选项的颜色

select标签新增选项option响应onchange事件

jQ给下拉框绑定事件,为什么要绑定在框(select标签)上,而不是绑定在选项(option标签)上

jQuery select2设置默认值从列表中的一个选项吗

如何解决select标签option选项内容过长无法完全显示的问题

javascript获取select标签下的option的value求解?