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;
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743669549a4487547.html
评论列表(0条)