<!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="blue";
</script>
</body>
</html>
浏览器是顺序解析HTML文档的,当p1和p2显示完后才解析它们后面js文档
其实这个代码书写是不规范的。
因为JS、jequery库的引用都是在文档之前,因为要是JS出现问题了~就是单纯文字~
代码是从上往下读取输出的啊。。。你的JS写在<p id="p1">我是第一段文字</p>前面 不就先输出hello了么