问答详情
源自:1-1 为什么学习JavaScript

在13行输入后,没有变颜色

<!DOCTYPE HTML>

<html> 

<head>

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

<title>热身</title>

</head>

<body>

  <p id="p1">我是第一段文字</p>

  <p id="p2">我是第二段文字</p>

  

  <script type="text/javascript">

    document.write("hello");

document.getElenebtById("p1").style.color="blue";

  </script>

</body>

</html>


提问者:慕娘4672923 2016-07-19 13:30

个回答

  • 麦小麦3669661
    2016-07-19 13:34:38
    已采纳

    element  单词写错了

  • 黛玛
    2016-07-20 11:09:14

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>热身</title>
    </head>
    <body>
      <p id="p1">我是第一段文字</p>
      <p id="p2">我是第二段文字</p>
     
      <script type="text/javascript">
        document.write("hello");    
        document.getElementById("pl").style.color="blue";
      </script>
    </body>
    </html>

    我的代码是这样的,感觉没有错误,但是还是没有效果

    跪求解