<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>