选择下拉框时如何取选项的值?

来源:互联网 发布:嵌入式软件培训机构 编辑:程序博客网 时间:2024/04/28 05:34

<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>select</title><script type="text/javascript"></script></head><body id="body"><select onchange="alert(this.options[this.selectedIndex].value);"><option value="1">a</option><option>b</option><option>c</option></select></body></html>



上面是个demo   

javascript:document.getElementById('reny').value=this.options[this.selectedIndex].innerHTML; 这是取选项的html



原创粉丝点击