javascript 如何遍历select option

淘二哥女装专业导购
http://www.tao2ge.com



无标题文档









其它参考方法:
document.form.select控件的id名称.options[document.form.select控件的id名称.selectedIndex].text;取显示的文本
document.form.select控件的id名称.options[document.form.select控件的id名称.selectedIndex].value;取value值
document.getElementById("1").value; //取的是你选择了的OPTION 的VALUE document.getElementById("a").innerHTML; document.getElementById("a").innerText; //取的是OPTION后面的值

你可能感兴趣的:(JAVAEE,JavaScript)