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