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