x
 
<!DOCTYPE html>
<html>
<head>
<style>
#myDiv {
  border: thick solid blue;
}
</style>
</head>
<body>
<div id="myDiv">这是一个 div 元素。</div>
<br>
<button type="button" onclick="myFunction()">改变下边框</button>
<script>
function myFunction() {
  document.getElementById("myDiv").style.borderBottom = "thin dotted red";
}
</script>
</body>
</html>