最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin0浏览0评论

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;

发布评论

评论列表(0)

  1. 暂无评论