获取单选按钮选中的值

时间:2023-01-23 19:34:53

在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>

页面显示情况是这样的:

获取单选按钮选中的值

选中时,情况是这样的:

获取单选按钮选中的值