select删除所有项var select document.getElementById(selectId)while(select.options.length0) {se
select删除所有项
var select = document.getElementById("selectId");while(select.options.length>0) {select.options.remove(0);} select删除所有项
var select = document.getElementById("selectId");while(select.options.length>0) {select.options.remove(0);}