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