x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<title>蜜蜂教程(mifengjc.com)</title>
6
<style type="text/css">
7
#ex1 {
8
border: 1px solid red;
9
outline: green dotted thick;
10
}
11
</style>
12
<script>
13
function displayResult() {
14
document.getElementById("ex1").style.outline = "thick solid #0000FF";
15
}
16
</script>
17
</head>
18
<body>
19
20
<div id="ex1">这是一些文本。</div>
21
<br>
22
<button type="button" onclick="displayResult()">修改外边框</button>
23
<p><b>注意:</b> IE8 支持outline属性必须制定一个!DOCTYPE </p>
24
25
</body>
26
</html>