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

输出结果是什么?没有变蓝,p1p2是哪行输出的?

我是第一段文字

我是第二段文字

hello

以上是我的结果


提问者:cxz灵 2016-04-22 11:42

个回答

  • 三瓣核桃
    2016-05-10 17:36:13

    你把你的代码贴出来吧 我刚刚解决了我的问题。getElementById 这个里边拼写正确不?

  • 三瓣核桃
    2016-05-10 16:46:59

    我的也是颜色不变,囧。

    <!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="red";
      </script>
    </body>
    </html>


  • qq电子时代
    2016-04-22 11:59:36

    document.write("hello") ;   //这是输出内容为hello

    document.getElementById("p1").style.color="blue";   //这是调用ip为p1的内容,将ip为p1的内容格式的颜色设为蓝色

    p1与p2都会输出,p1与p2的输出与document无关,是body中正常输出的内容,但是p1的格式颜色在下面改为蓝色了

    正确的输出结果为:

    我是第一段文字//此行为蓝色

    我是第二段文字  

    hello


  • 神一样的榜爺
    2016-04-22 11:58:00

    检查一下代码 区分大小写,符号用英文符号

  • a1029026404
    2016-04-22 11:54:21

    查看代码   有区分大小写  顺便说下引号也要注意加