清空select标签中option选项的3种不同方式_HTML/Xhtml_网页制作
程序员文章站
2022-04-13 08:41:58
...
方法一
document.getElementById("selectid").options.length = 0;
方法二
document.formName.selectName.options.length = 0;
方法三
document.getElementById("selectid").innerHTML = "";
复制代码
代码如下:document.getElementById("selectid").options.length = 0;
方法二
复制代码
代码如下:document.formName.selectName.options.length = 0;
方法三
复制代码
代码如下:document.getElementById("selectid").innerHTML = "";