转自: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()
posted on 2018-12-24 23:37  Sharpest  阅读(1419)  评论(0编辑  收藏  举报