代码编辑器:
x
1
<style>
2
#ex1{
3
border: 1px solid #FF0000;
4
}
5
</style>
6
<script>
7
function displayResult(){
8
document.getElementById("ex1").style.borderBottomColor="#00FF00";
9
}
10
</script>
11
<div id="ex1">这是一些文本.</div>
12
<br>
13
<button type="button" onclick="displayResult()">修改底部边框的颜色</button>
14