手机版 | 登录 | 注册 | 留言 | 设首页 | 加收藏
联系客服
当前位置: 网站首页 > 程序技巧 > 文章 当前位置: 程序技巧 > 文章

如何利用javascript获取表单中select下拉列表中所选中项的值value

时间:2021-07-10    点击: 次    来源:网络    添加者:佚名 - 小 + 大

<html>
<head>

<script type="text/javascript">
function getIndex()
{
  //从document对象中,获取select标签
  var a=document.getElementById("mySelect");
  //select标签获取的值其实是一个数组--a.options[]; 然后,选定项的下标是--a.selectedIndex
   var b=a.options[a.selectedIndex].value;   
   alert(b);
}
</script>
</head>

<body>
<form name="form1" id="form1">
Select your favorite fruit:
<select id="mySelect" name="mySelect">
<option value="11">Apple</option>
<option value="22">Orange</option>
<option value="33">Pineapple</option>
<option value="44">Banana</option>
</select>
<br/><br/>
<input type="button" onclick="getIndex()" value="Alert index of selected option">
</form>
</body>
</html>

 

 

分享按钮

上一篇:javascript读取和设置radio选项的值

下一篇:在数据库查询中如何用日期时间函数

豫ICP备19032584号-1  |   QQ:80571569  |  地址:河南濮阳市  |  电话:13030322310  |  
Copyright © 2024 FE内容付费系统 版权所有,授权www.xingwp.cn使用 Powered by 66FE.COM