admin管理员组文章数量:1341431
I have a dropdown list with more than one thousand items. Once I click on clear
button it should clear all items. For removing I tried looping.
What would be the fastest way to remove all items from a dropdown list or listbox?
I have a dropdown list with more than one thousand items. Once I click on clear
button it should clear all items. For removing I tried looping.
What would be the fastest way to remove all items from a dropdown list or listbox?
Share Improve this question edited Feb 2, 2016 at 15:13 Adam Michalik 9,96513 gold badges75 silver badges107 bronze badges asked Sep 19, 2012 at 13:48 Kuldeep ShigeKuldeep Shige 4533 gold badges13 silver badges26 bronze badges3 Answers
Reset to default 8Set innerHTML of select box as empty string.
var selectBox = document.getElementById("selectboxID");
selectBox.innerHTML = "";
An option if you're using jQuery:
$("#selectboxID").empty();
Thanks for the quick reply How about this?? document.getElementById(id).options.length = 0;
本文标签: javascriptFastest way to remove all items from dropdown list or listboxStack Overflow
版权声明:本文标题:javascript - Fastest way to remove all items from dropdown list or listbox? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743669549a2519301.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论