JavaScript 参考手册
Style borderBottomWidth 属性
更改下边框的宽度
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <style type="text/css"> #ex1 { border: 1px solid #FF0000; } </style> <script> function displayResult() { document.getElementById("ex1").style.borderBottomWidth = "thick"; } </script> </head> <body> <div id="ex1">这是一些文本。</div> <br> <button type="button" onclick="displayResult()">修改底部边框的宽度</button> </body> </html>
运行结果:
点击运行 »