removing all option of dropdown box in javascript

后端 未结 7 1747
自闭症患者
自闭症患者 2021-02-01 04:21

How can i dynamically remove all options of a drop down box in javascript?

7条回答
  •  不知归路
    2021-02-01 05:28

    There is simple and elegant way to do this:

    for(var o of document.querySelectorAll('#id > option')) {
      o.remove()
    }
    

提交回复
热议问题