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