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

本文标签: javascriptFastest way to remove all items from dropdown list or listboxStack Overflow