javascript - Fastest way to remove all items from dropdown list or listbox? - Stack Overflow

I have a dropdown list with more than one thousand items. Once I click on clear button it should clear

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 badges
Add a ment  | 

3 Answers 3

Reset to default 8

Set 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;

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743669549a4487547.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信