方法一

复制代码代码如下:
document.getElementById("selectid").options.length = 0;

方法二

复制代码代码如下:
document.formName.selectName.options.length = 0;

方法三

复制代码代码如下:
document.getElementById("selectid").innerHTML = "";