當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


HTML Style textDecorationStyle用法及代碼示例


HTML DOM中的Style textDecorationStyle屬性用於設置行。它可以以各種樣式顯示線,例如單線,雙線,波浪線等。通過使用此屬性,我們可以以指定的樣式顯示線。

用法:

  • 它返回textDecorationStyle屬性。
    object.style.textDecorationStyle
  • 它用於設置textDecorationStyle屬性。
    object.style.textDecorationStyle = "solid|double|dotted|dashed|
    wavy|initial|inherit"

屬性值:


  • solid:此屬性用於將行顯示為單行。這是默認值。
  • double:此屬性用於將線顯示為雙線。
  • dotted:此屬性用於將線顯示為虛線。
  • dashed:此屬性用於將線顯示為虛線。
  • wavy:此屬性用於將線顯示為波浪線。
  • intial:它將textDecorationStyle屬性設置為其默認值。
  • inherit:此屬性從其父元素繼承。

返回值:

  • 它返回表示元素的textDecorationStyle屬性的字符串。

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style textDecorationStyle Property </title> 
    <style> 
            #gfg { 
            text-decoration:underline; 
    </style> 
  
</head> 
  
<body> 
  
    <center> 
        <h1 style="color:green;width:40%;">  
                GeeksForGeeks  
            </h1> 
        
        <h2>DOM Style textDecorationStyle Property </h2> 
        
        <p id="gfg">  
          A Computer science portal for geeks 
      </p> 
  
        <button type="button" onclick="geeks()"> 
            Change Style 
        </button> 
  
        <script> 
            function geeks() { 
                
                // Set textDecorationStyle Property 
                document.getElementById( 
                  "gfg").style.textDecorationStyle =  
                  "double"; 
            } 
        </script> 
        
    </center> 
</body> 
  
</html>

輸出:

  • 之前單擊按鈕:
  • 單擊按鈕後:

示例2:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM Style textDecorationStyle Property </title> 
    <style> 
            #gfg { 
            text-decoration:underline; 
    </style> 
  
</head> 
  
<body> 
  
    <center> 
        <h1 style="color:green;width:40%;">  
                GeeksForGeeks  
            </h1> 
        <h2>DOM Style textDecorationStyle Property </h2> 
  
        <p id="gfg"> 
            A Computer science portal for geeks 
        </p> 
  
        <button type="button" onclick="geeks()"> 
            Change Style 
        </button> 
  
        <script> 
            function geeks() { 
  
                // Set textDecorationStyle Property 
                document.getElementById( 
                  "gfg").style.textDecorationStyle =  
                  "wavy"; 
            } 
        </script> 
    </center> 
</body> 
  
</html>

輸出:

  • 之前單擊按鈕:
  • 單擊按鈕後:

支持的瀏覽器:下麵列出了DOM Style textDecorationStyle屬性支持的瀏覽器:

  • 穀歌瀏覽器57.0
  • Firefox 36.0
  • Opera 44.0


相關用法


注:本文由純淨天空篩選整理自bestharadhakrishna大神的英文原創作品 HTML | DOM Style textDecorationStyle Property。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。