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

为啥没变色?

按照提示填的,提示是正确的,但是没有看到变蓝色,代码如下:

<!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("p1").style.color="blue";

  </script>

</body>

</html>


提问者:Cathy_Leo 2018-08-20 14:33

个回答

  • 慕虎7413073
    2018-08-20 16:24:48

    JavaScript严格分辨大小写,如果弄错大小写。程序会报错。


  • Yuri_Dp
    2018-08-20 14:37:22

    document.getElementByID("p1").style.color="blue";错了。

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

  • Cathy_Leo
    2018-08-20 14:37:13

    已经知道了getElementByID应该是getElementById才是对的