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


HTML DOM dir用法及代碼示例


DOM dir屬性用於設置或返回Element中dir屬性的值。它定義了元素內容中文本的方向。

用法

HTMLElementObject.dir

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


HTMLElementObject.dir = "ltr|rtl|auto"

屬性:

  • ltr:這是默認值,用於將text-direction朝左向右返回。
  • rtl:用於返回從右到左的text-direction。

示例1:更改文本的方向。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM dir Property 
    </title> 
    <style> 
        button { 
            margin-left:270px; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green;font-weight:bold;text-align:center;"> 
      GeeksForGeeks 
    </h1> 
    <h2 style="color:green;font-weight:bold;text-align:center">  
      DOM dir Property 
    </h2> 
    <p id="sudo"> 
        <b> 
          GeeksForGeeks is a good website for  
          learning computer science. 
        </b> 
    </p> 
    <button onclick="geeks()">Submit</button> 
  
    <script> 
        function geeks() { 
            document.getElementById("sudo").dir = "rtl"; 
        } 
    </script> 
  
</body> 
  
</html>

輸出:

示例2:獲取文本的方向。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title> 
        HTML | DOM dir Property 
  
    </title> 
    <style> 
        button { 
            margin-left:270px; 
        } 
    </style> 
</head> 
  
<body> 
    <h1 style="color:green;font-weight:bold;text-align:center;"> 
      GeeksForGeeks 
    </h1> 
    <h2 style="color:green;font-weight:bold;text-align:center"> 
      DOM dir Property 
    </h2> 
    <p id="sudo" dir="ltr"> 
        <b> 
        GeeksforGeeks is a good website for 
        learning computer science. 
        </b> 
    </p> 
  
    <button onclick="geeks()">Submit</button> 
    <p id="gfg" style="margin-left:270px;"></p> 
    <script> 
        function geeks() { 
            var x = document.getElementById("sudo").dir; 
            document.getElementById("gfg").innerHTML = 
                "Direction of the text is " + x; 
  
        } 
    </script> 
  
</body> 
  
</html>          

輸出:

支持的瀏覽器:DOM Dir屬性支持的瀏覽器如下所示:

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


相關用法


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