HTML - DOM样式对象direction属性



HTML DOM样式对象direction属性用于设置或获取元素的文本方向。

语法

设置direction属性
object.style.direction= "ltr | rtl | initial | inherit";
获取direction属性
object.style.direction;

属性值

描述
ltr 这是默认值,指定从左到右的文本方向。
rtl 指定从右到左的文本方向。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的文本方向。

HTML DOM样式对象“direction”属性示例

以下示例将方向从从左到右更改为从右到左。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object direction Property
    </title>
</head>
<body>
    <button onclick="fun()">RTL</button>
    <button onclick="funTwo()">LTR</button>
    <p id="direction">Welcome to Tutorials Point</p>
    <script>
        function fun() {
            document.getElementById("direction")
                .style.direction = "rtl";
        }
        function funTwo() {
            document.getElementById("direction")
                .style.direction = "ltr";
        }
    </script>
</body>
</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
direction 是 2 是 12 是 1 是 1 是 9.2
html_dom_style_object_reference.htm
广告