当前位置:Gxlcms >
html代码 >
清空select标签中option选项的3种不同方式_HTML/Xhtml_网页制作
清空select标签中option选项的3种不同方式_HTML/Xhtml_网页制作
时间:2021-07-01 10:21:17
帮助过:64人阅读
方法一
document.getElementById("selectid").options.length = 0;
方法二
document.formName.selectName.options.length = 0;
方法三
document.getElementById("selectid").innerHTML = "";