当前位置: 代码迷 >> Web前端 >> select剔除所有项
  详细解决方案

select剔除所有项

热度:128   发布时间:2012-10-12 10:17:04.0
select删除所有项
		

var select = document.getElementById("selectId");
while(select.options.length>0) {
select.options.remove(0);
		}
  相关解决方案