代码编辑器:
x
1
<style>
2
#ex1{
3
border:1px solid red;
4
outline:green dotted thick;
5
}
6
</style>
7
<script>
8
function displayResult(){
9
document.getElementById("ex1").style.outlineColor="#0000FF";
10
}
11
</script>
12
<div id="ex1">这是一些文本</div>
13
<br>
14
<button type="button" onclick="displayResult()">修改外边框颜色</button>
15
<p><b>注意:</b> IE8 及以下版本如果要支持 outline 属性,则必须声明 !DOCTYPE</p>
16