js 清空select方法
方法1:
select.options.length=0;
方法2:
while(select.childNodes.length){
select.removeChild(select.childNodes[0]);
}
济南网站建设 济南网站制作wwww.qilubang.com
方法1:
select.options.length=0;
方法2:
while(select.childNodes.length){
select.removeChild(select.childNodes[0]);
}