HTML - DOM Style 对象 counterIncrement 属性



HTML DOM Style 对象**counterIncrement**属性定义了在选择器每次出现时要增加的计数器的数量。

语法

设置 counterIncrement 属性
object.style.counterIncrement= "none | id number | initial | inherit";
获取 counterIncrement 属性
object.style.counterIncrement;

属性值

描述
none 这是默认行为,指定不增加任何计数器。
id 数字 id 指定要增加哪个计数器,数字设置在选择器每次出现时要增加计数器的次数。它的值可以是 0 或负数,默认值为 1。
initial 用于将此属性设置为其默认值。
inherit 用于继承其父元素的属性。

返回值

它返回一个字符串值,表示元素的 counterIncrement 属性。

HTML DOM Style 对象“counterIncrement”属性示例

以下示例说明了在 h3 元素上设置计数器的属性。

<!DOCTYPE html>
<html lang="en">
<head>
    <title>
        HTML DOM Style Object counterIncrement Property
    </title>
    <style>
        h3 {
            counter-increment: level;
        }
        h3:before {
            content: "level " counter(level) " ";
        }
    </style>
</head>
<body>
    <h3 id="inc">HTML DOM Tutorials</h3>
    <h3>HTML DOM Syle Object</h3>
    <h3>counterIncrement Property</h3>
    <h3>Example Code</h3>
    <button onclick="fun()">Click</button>
    <script>
        function fun() {
            document.getElementById("inc")
                .style.counterIncrement = "sublevel";
        }
    </script>
</body>
</html>

支持的浏览器

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