<select id="subject" name="subject">
<option value="one">文本值1</option>
<option value="two">文本值2</option>
<option value="three">文本值3</option>
</select>
使用:options[2].value,这样可以得到值“three”;使用options[2].text,得到“文本值3”
为<html:select>定义id属性,然后在JS中使用document.getElementById("")就可以对他进行 *** 作了~比如你要做赋值,可以这么写~
<html:select id="test"></html:select>
<script>
document.getElementById("test").value="1"
</script>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)