简单教程
提交运行
代码编辑器:
<style> #ex1{ border: thick solid #FF0000; } </style> <script> function displayResult(){ document.getElementById("ex1").style.borderStyle="dotted double"; } </script> <div id="ex1">这是一些文本</div> <br> <button type="button" onclick="displayResult()">修改四个边框的style</button>
运行结果: