方法一
var index = master.selectedIndex;
while (index >= 0) {
master.options[index] = null;
index = master.selectedIndex;
}
方法二
while (master.options.length > 0) {
方法二中清掉單一筆的方法
方法一
master.options[0] = null;
方法二
master.remove(0);
}
方法三
master.options.length = 0;
reference: 不可考
[javascript] 清除 select 裡的 option
分類:javascript