CSS 参考手册
CSS text-decoration-line 属性
object.style.textDecorationLine="overline" - 尝试一下 -
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <style> p#myP { text-decoration: underline; } </style> </head> <body> <p id="myP"> Hello world! </p> <p>点击“尝试一下”按钮,改变段落的 text-decoration-line。</p> <button onclick="myFunction()">尝试一下</button> <script> function myFunction() { document.getElementById("myP").style.textDecorationLine = "overline"; document.getElementById("myP").style.MozTextDecorationLine = "overline"; // 针对 Firefox 的代码 } </script> <p><b>注意:</b>几乎所有的主流浏览器都不支持 textDecorationLine 属性。</p> <p><b>注意:</b>Firefox 支持另一个可替代该属性的属性,即 MozTextDecorationLine 属性。</p> </body> </html>
运行结果:
点击运行 »