运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <head> <style> #myDIV { text-decoration: underline; } </style> </head> <body> <h1>Change text-decoration-style with JavaScript</h1> <div id="myDIV"> Hello world! </div> <p>Click the "Try it" button to change the text-decoration-style of the div.</p> <button onclick="myFunction()">Try it</button> <script> function myFunction() { document.getElementById("myDIV").style.textDecorationStyle = "wavy"; } </script> <p><b>Note:</b> The textDecorationStyle property is not supported in Edge prior 79.</p> </body> </html>