如何用js取下拉框中的内容
发布网友
发布时间:2022-04-22 22:17
我来回答
共1个回答
热心网友
时间:2022-04-22 22:52
<td class=xl2930783 width=72 style='border-top:none;border-left:none;
width:54pt'><div align="center" id="row22c9" class="cell"><select id="select" name="cszlist/valrow22c9" style="width: 50px;height: 30px;" ><option value=""></option><option value="82">√</option></select><input type="button" value="获取下拉框的值" onclick="click()"></div></td>
1,首先在select上加一个id属性
2,其次在相应的地方加上一个按钮以点击获取值所用
3,加上下面的js代码放在页面的<head></head>标签中!
<script type="text/javascript">
function click(){
alert(document.getElementsById("select").value);
}
</script>