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="green";
document.getElementById("p2").style.color="red";
</script>
</body>
</html>
笔者希望程序最后运行效果如上。
源代码如上
希望有人可以指点一二,笔者不胜感激。
[此贴子已经被作者于2017-2-28 21:54编辑过]