当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。