案例: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 changeBorder()
11
{
12
document.getElementById("p1").style.borderBottom="thick solid blue";
13
}
14
</script>
15
</head>
16
<body>
17
18
<input type="button" onclick="changeBorder()" value="Change bottom border" />
19
<p id="p1">This is a paragraph with a border</p>
20
21
</body>
22
</html>
23