使用JavaScript中的 textDecoration属性装饰文本。您可以使用此属性在文本下划线。
您可以尝试运行以下代码以使用JavaScript设置文本的修饰-
<!DOCTYPE html> <html> <body> <div id = "myText">This is demo text.</div><br> <button onclick = "display()">Set Text Decoration</button> <script> function display() { document.getElementById("myText").style.textDecoration = "underline"; } </script> </body> </html>