本文為大家詳細介紹下使用3種不同方式來清空select標簽中option選項,具體語法格式如下,感興趣的朋友可以參考下哈,希望對大家有所幫助
方法一
復制代碼 代碼如下:
document.getElementById("selectid").options.length = 0;
方法二
復制代碼 代碼如下:
document.formName.selectName.options.length = 0;
方法三
復制代碼 代碼如下:
document.getElementById("selectid").innerHTML = "";
以上就是我們給大家介紹的清空select標簽中option了。希望大家繼續關注我們的網站!