问答详情
源自:9-1 认识DOM

为什么我这样写就不行了??哪里出错了

<body>
  <h2 id="con">I love JavaScript</H2>
  <p> JavaScript使网页显示动态效果并实现与用户交互功能。</p>
  <script type="text/javascript">
    function got(x){
        document.getElementById(x);
    }  
   
        got(con).style.color="red";
 
        // document.getElementById("con").style.color="red"
  </script>
</body>

提问者:答答安 2015-12-29 17:28

个回答

  • Caballarii
    2015-12-29 17:29:53
    已采纳

    got("con")

  • 慕移动9181930
    2022-03-25 05:42:26

    那应该属于网络课程的。不是编程讲的.~~~?<span>clearTimeout()···</span>

  • MatveyAplega_0
    2016-04-19 15:30:23

    加个Return 是什么意思

  • Perona
    2015-12-29 20:12:36

    参考代码

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>style样式</title>
    </head>
    <body>
      <h2 id="con">I love JavaScript</H2>
      <p> JavaScript使网页显示动态效果并实现与用户交互功能。</p>
      <script type="text/javascript">
        function got(x){
            return document.getElementById(x);
        }  
        got('con').style.color="red";
     </script>
    </body>
    </html>