方法一
方法二
方法三
document.getElementById("selectid").options.length = 0;
方法二
document.formName.selectName.options.length = 0;
方法三
document.getElementById("selectid").innerHTML = "";
不知道为了什么,只有这个方法三灵
方法4:
document.getElementById("selectid").Empty()