清空select标签中option选项的3种不同方式
2014-07-22来源:易贤网

方法一

代码如下:

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

方法二

代码如下:

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

方法三

代码如下:

document.getElementById("selectid").innerHTML = "";

更多信息请查看IT技术专栏

推荐信息