Style textDecoration 屬性
Style 對象定義和用法
textDecoration 屬性設置或返回一個或多個的文本修飾。
提示:如需為元素規(guī)定一個以上的修飾類型,請指定一個空格分隔的列表。
語法
設置 textDecoration 屬性:
Object.style.textDecoration="none|underline|overline|line-through|blink|inherit"
返回 textDecoration 屬性:
Object.style.textDecoration
值 | 描述 |
---|---|
none | 默認。定義標準的文本。 |
underline | 定義文本下的一條線。 |
overline | 定義文本上的一條線。 |
line-through | 定義穿過文本的一條線。 |
inherit | textDecoration 屬性的值從父元素繼承。 |
瀏覽器支持
所有主要瀏覽器都支持 textDecoration 屬性。
注意:IE7 及更早的版本不支持 "inherit" 值。IE8 只有規(guī)定了 !DOCTYPE 才支持 "inherit"。IE9 支持 "inherit"。
實例
實例
裝飾文本:
<html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.textDecoration="underline overline";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Decorate text</button>
</body>
</html>
<head>
<script>
function displayResult()
{
document.getElementById("p1").style.textDecoration="underline overline";
}
</script>
</head>
<body>
<p id="p1">This is some text.</p>
<br>
<button type="button" onclick="displayResult()">Decorate text</button>
</body>
</html>
嘗試一下 ?
Style 對象
更多建議: