码迷,mamicode.com
首页 > 其他好文 > 详细

获取单选按钮选中的值

时间:2015-10-23 18:08:14      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

在html中,页面只有这些代码

<script type="text/javascript">

   function ok(){

    //获取所有单选按钮(同一组),得到对象
    var fruits = document.getElementByName("fruit");

    for(var i=0;i<fruits.length;i++){

      if(fruits[i].checked){

        alert("选择了"+fruits[i].value);

      }

    }

  }

</script>

<body>

<div>
    <input type="radio"  name ="fruit" value="apple" onclick="ok()">苹果
    <input type="radio"  name ="fruit" value="banana" onclick="ok()" >香蕉
    <input type="radio"  name ="fruit" value="pear" onclick="ok()">梨
</div>

</body>

页面显示情况是这样的:

技术分享

选中时,情况是这样的:

技术分享

获取单选按钮选中的值

标签:

原文地址:http://www.cnblogs.com/xielong/p/4904849.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!