代码编辑器:
x
1
<style>
2
#ex1{
3
border: thin dotted #FF0000;
4
}
5
</style>
6
<script>
7
function displayResult(){
8
document.getElementById("ex1").style.borderTop="thick solid #0000FF";
9
}
10
</script>
11
<div id="ex1">这是一些文本</div>
12
<br>
13
<button type="button" onclick="displayResult()">修改上边框</button>
14