<!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="red";
document.getElementById("p2").style.color="blue"
</script>
</body>
</html>
声明的编码格式和保存时的编码格式要一致
可能存在格式问题吧,试试gbk和gb2312这两个编码格式
把浏览器编码由UTF-8改成简体中文就可以了