案例:HTML DOM案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p id="p1">Hello world!</p>
6
<p id="p2">Hello world!</p>
7
8
<script>
9
document.getElementById("p2").style.color="blue";
10
document.getElementById("p2").style.fontFamily="Arial";
11
document.getElementById("p2").style.fontSize="larger";
12
</script>
13
14
</body>
15
</html>
16