为了账号安全,请及时绑定邮箱和手机立即绑定

我想通过按钮指选中一个复选框应该怎么做

<!DOCTYPE HTML>

<html>

    <head>

        <meta http-equiv="Content-Type" content="text/html; charset=gb2312">

        <title>无标题文档</title>

    </head>

    

    <body>

        <form>

          请选择你爱好:<br>

          <input type="checkbox" name="hobby1" id="hobby1">  音乐

          <input type="checkbox" name="hobby" id="hobby2">  登山

          <input type="checkbox" name="hobby" id="hobby3">  游泳

          <input type="checkbox" name="hobby" id="hobby4">  阅读

          <input type="checkbox" name="hobby" id="hobby5">  打球

          <input type="checkbox" name="hobby" id="hobby6">  跑步 <br>

          <input type="button" value = "全选" onclick = "checkall();">

          <input type="button" value = "全不选" onclick = "clearall();">

          <p>请输入您要选择爱好的序号,序号为1-6:</p>

          <input id="wb" name="wb" type="text" >

          <input name="ok" type="button" value="确定" onclick = "checkone();">

        </form>

        <script type="text/javascript">

        function checkall(){

            var myname = document.getElementsByName("hobby1");

           

                myname.checked=true;

            

        }

        function clearall(){

            var hobby = document.getElementsByName("hobby");

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

                hobby[i].checked=false;

            }

            

         // 任务2    

            

        }

        

        function checkone(){

            var j=document.getElementById("wb").value;

        

         // 任务3

        

        }

        

        </script>

    </body>

</html>



为什么这样想写没反应,但是加个for循环就有反应了 - -- - - -

正在回答

2 回答

你这样    var myname = document.getElementsByName("hobby1");

              myname.checked=true;


不行,

document.getElementsByName("hobby1");


返回的是一个数组,因为Name是可以重复的,虽然你这里只有一个name为hobby1复选框,他也是默认返回数组的,即一个元素的数组==>myname是一个只有一个元素的数组。

var myname = document.getElementsByName("hobby1");

              myname[0].checked=true; 就行了


0 回复 有任何疑惑可以回复我~
#1

卡兰尼克 提问者

非常感谢!谢谢谢谢 懂了
2016-12-01 回复 有任何疑惑可以回复我~

话说,复选框不是可以点击单选的吗。。。。干嘛还要另外做按钮。。。。。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

我想通过按钮指选中一个复选框应该怎么做

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信