为了账号安全,请及时绑定邮箱和手机立即绑定

新手求解???

<!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 回答

<!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标签还没有生成。

0 回复 有任何疑惑可以回复我~
#1

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

非常感谢!
2015-11-26 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
JavaScript入门篇
  • 参与学习       739727    人
  • 解答问题       9566    个

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

进入课程

新手求解???

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信