案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
body
5
{
6
background-color:#B8BFD8;
7
}
8
</style>
9
<script type="text/javascript">
10
function changeStyle()
11
{
12
document.body.style.backgroundColor="#FFCC80";
13
}
14
</script>
15
</head>
16
<body>
17
18
<input type="button" onclick="changeStyle()" value="Change background color" />
19
20
</body>
21
</html>
22