问答详情
源自:1-3 我也可以独立(引用JS外部文件)

输出问题求解?

我输入这个代码为何不行呢?在html里面也写了<p id="p1">jsjsjs</p>

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

提问者:qq_龙_18 2015-12-15 20:52

个回答

  • 李晓健
    2015-12-15 20:56:09
    已采纳

    <!DOCTYPE HTML>
    <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
        <title>test</title>
    </head>
    <body>
    <p id="p1">jsjsjs</p>
    <script type="text/javascript">
        document.write("hello");
        document.getElementById("p1").style.color="blue";
    </script>
    </body>
    </html>