看不懂这段。。。。。

来源:9-4 区别getElementByID,getElementsByName,getElementsByTagName

qq_精慕门3321009

2020-03-08 12:12

function checkone(){

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

            var hobby = document.getElementById("hobby"+j);

            hobby.checked = true;    }


写回答 关注

6回答

  • 走馬勿观花
    2020-03-21 14:36:37
    已采纳

    每项的id就是"hobby+(1~6)",拆分就是"hobby"+"1~6"组成id。那么这里用j来获取数字,再拼接给hobby,组成完整的id

    qq_精慕门...

    奥, 当时没看到id是hobby+个数字, 问的问题好蠢啊,,,给你采纳了,

    2020-03-21 14:40:04

    共 1 条回复 >

  • 走馬勿观花
    2020-03-21 14:48:17

    不清楚了,我也刚做这题,题目写的不清不楚的

  • 走馬勿观花
    2020-03-21 14:43:16

    但是这样做只是单选,不是复选

    qq_精慕门...

    嗯,只能选j那一个标签,题目中好像也只要选一个,谢谢你了,

    2020-03-21 14:44:54

    共 1 条回复 >

  • qq_精慕门3321009
    2020-03-11 19:22:51

    <!DOCTYPE HTML>

    <html>

        <head>

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

            <titlntsByName,getElementsBe>无标题文档</title>

        </head>

        

        <body>

            <form>

         

         请选择你爱好:<br>

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

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

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

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

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

              <input type="checkbox" name="hobby" id="hobby6">  6跑步 <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 hobby = document.getElementsByTagName("input");

              

              // 任务1 

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

            {

             if(hobby[i].type == "checkbox")

             {

                hobby[i].checked = true;

             }

            }

     

            }

            function clearall(){

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

                

             // 任务2    

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

              {

                 hobby[i].checked = false;

              }

            }

            

            function checkone(){

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

             // 任务3

                var hobby = document.getElementById("hobby"+j);

                hobby.checked = true;

            }

            

            </script>

        </body>

    </html>


  • 流星64
    2020-03-11 17:45:02

    j :获取输入框的值

    hobby : 获取与j相应的id

    选中相应的复选框

    qq_精慕门... 回复流星64

    我代码事答案里的代码啊, 不信你去看看, 评论有我完整的代码,

    2020-03-14 19:08:06

    共 5 条回复 >

  • 真的不会编程
    2020-03-08 17:20:47

    代码应该要完整一点

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

467350 学习 · 21876 问题

查看课程

相似问题