新手求解???

来源:1-1 为什么学习JavaScript

qq_嘴角洋溢起的一丝微笑_0

2015-11-25 19:57

<!doctype html>

<html>

<head>

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

<title>初识css</title>

<script type="text/javascript">

document.write("hello");

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

</script>

</head>

<body>

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

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

</body>

</html>

为什么P1不显示为蓝色?

写回答 关注

1回答

  • 李晓健
    2015-11-25 20:05:39
    已采纳
    <!doctype html>
    <html>
    <head>
        <meta http-equiv="content-type" content="text/html; charset=utf-8">
        <title>初识css</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>

    因为你的js代码执行时,页面的p标签还没有生成。

    qq_嘴角洋...

    非常感谢!

    2015-11-26 21:38:27

    共 1 条回复 >

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题

新手求解???

回答 1

新手 求解

回答 2

新手求助?

回答 2

新手求教!

回答 4

新手求指教

回答 5