清空select标签中option选项的3种不同方式
发布时间:2016-12-27 来源:查字典编辑
摘要:方法一document.getElementById("selectid").options.length=0;方法二document.fo...
方法一
document.getElementById("selectid").options.length = 0;
方法二
document.formName.selectName.options.length = 0;
方法三
document.getElementById("selectid").innerHTML = "";