removing all option of dropdown box in javascript

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

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

7条回答
  •  终归单人心
    2021-02-01 05:02

    Its very easy using JavaScript and DOM:

    while (selectBox.firstChild)
        selectBox.removeChild(selectBox.firstChild);
    

提交回复
热议问题