javascript textDecoration 屬性


  翻譯結果:

text

英[tekst]   美[tɛkst]  

n.文本,原文;課文,教科書;主題;版本

#v .傳簡訊

第三人稱單數: texts 複數: texts 現在分詞: texting 過去式: texted

decoration

#英[ˌdekəˈreɪʃn]   

英[ˌdekəˈreɪʃn]  美[美[美[ ˌdɛkəˈreʃən]  

n.裝飾品;裝飾,裝潢;裝飾圖案,裝飾風格;獎章

####複數: decorations###

javascript textDecoration 屬性語法

作用:對文字進行修飾。

語法:Object.style.textDecoration=none|underline|overline|line-through|blink

javascript textDecoration 屬性範例

<html>
<head>
    <meta charset="UTF-8">
<script type="text/javascript">
function setTextDecoration()
{
document.getElementById("p1").style.textDecoration="overline";
}
</script>
</head>
<body>

<p id="p1">This is an example paragraph.</p>
<p>给文本添加下划线</p>
<input type="button" onclick="setTextDecoration()"
value="Set text-decoration" />

</body>
</html>

執行實例 »

點擊 "執行實例" 按鈕查看線上實例

首頁

影片

問答