removing all option of dropdown box in javascript

后端 未结 7 1735
自闭症患者
自闭症患者 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()
    }
    
    0 讨论(0)
提交回复
热议问题