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


HTML Style direction用法及代碼示例


HTML DOM中的樣式方向屬性用於設置或返回元素的文本方向。

用法:

  • 用於設置文本方向。
    object.style.direction = "ltr|rtl|initial|inherit"
  • 它返回文本方向。
    object.style.direction

屬性值:


  • ltr:從左到右指定方向,這也是默認方向。
  • rtl:將方向指定為從右到左。
  • initial:將屬性設置為其默認值。
  • inherit:從父元素繼承屬性。

返回值:它返回文本內容的文本方向。

範例1:本示例從右到左設置文本方向。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Style direction Property 
    </title> 
</head> 
  
<body> 
    <div> 
          
        <!-- Style direction Property used here -->
        <p id = "para"> 
            Welcome to GeeksforGeeks 
        </p> 
    </div> 
      
    <input type = "button" value = "Click Here!"
    onclick = "myGeeks()" /> 
  
    <!-- script to set text direction -->
    <script> 
        function myGeeks() { 
            document.getElementById("para").style.direction 
                                                   = "rtl"; 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
之前單擊按鈕:

單擊按鈕後:

範例2:本示例返回文本內容的方向。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML DOM Style direction Property 
    </title> 
</head> 
  
<body> 
    <div> 
        <p id = "para" style = "direction:rtl"> 
            Welcome to GeeksforGeeks 
        </p> 
    </div> 
  
    <input type = "button" value = "Click Here!"
        onclick = "myGeeks()" /> 
      
    <!-- script returns the content direction -->
    <script> 
        function myGeeks() { 
            alert(document.getElementById("para").style.direction); 
        } 
    </script> 
</body> 
  
</html>                    

輸出:
之前單擊按鈕:

單擊按鈕後:

支持的瀏覽器:樣式方向屬性支持的瀏覽器如下:

  • 穀歌瀏覽器
  • IE瀏覽器
  • Firefox
  • Opera
  • Safari


相關用法


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