清空select标签中option选项的3种不同方式
(编辑:jimmy 日期: 2024/11/9 浏览:3 次 )
方法一
复制代码代码如下:
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 = "";
下一篇:label标签使用过程中遇到的问题分析及解决思路