1. 程式人生 > >清空select標籤中option選項的4種不同方式

清空select標籤中option選項的4種不同方式

轉自:https://blog.csdn.net/pt_sm/article/details/53521560

方法一 

document.getElementById("selectid").options.length = 0; 


方法二 

document.formName.selectName.options.length = 0; 


方法三 

document.getElementById("selectid").innerHTML = ""; 不知道為了什麼,只有這個方法三靈 方法4: document.getElementById("selectid").Empty()