案例:javascript案例     状态:可编辑再运行    进入竖版
 运行结果 
x
 
1
<html>
2
<head>
3
<style type="text/css">
4
p
5
{ 
6
border: thin dotted #FF0000;
7
}
8
</style>
9
<script type="text/javascript">
10
function changePadding()
11
{
12
document.getElementById("p1").style.paddingRight="2cm";
13
}
14
</script>
15
</head>
16
<body>
17
18
<input type="button" onclick="changePadding()" value="Change right padding" />
19
20
<p id="p1">This is a paragraph. This is a paragraph.
21
This is a paragraph. This is a paragraph.
22
This is a paragraph. This is a paragraph.</p>
23
24
</body>
25
</html>
26