案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<script type="text/javascript">
4
function setColor()
5
{
6
document.getElementById("p1").style.color="#ff0000";
7
document.getElementById("p2").style.color="magenta";
8
}
9
</script>
10
</head>
11
<body>
12
13
<p id="p1">This is an example paragraph.</p>
14
<p id="p2">This is also an example paragraph.</p>
15
16
<input type="button" onclick="setColor()" value="Change color of text" />
17
18
</body>
19
</html>
20