javascript textDecoration属性


  翻訳結果:

text

English[tekst] American[tɛkst]

n. テキスト、原文; テキスト、教科書; テーマ; バージョン

v .Texting

三人称単数: texts 複数形: texts 現在分詞: texting 過去形: texted

decoration

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

n. 装飾; 装飾、装飾; 装飾パターン、装飾スタイル; メダル

複数形: 装飾

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>

インスタンスの実行 »

[インスタンスの実行] ボタンをクリックしてオンライン インスタンスを表示します

ホームページ

ビデオ

に質問