HTML - DOMTokenList length 属性



HTML DOMTokenList **length** 属性是一个只读属性,用于获取标记列表中的标记数量。

语法

domtokenlist.length;

返回值

它返回一个数字,表示标记列表中的标记数量。

HTML DOMTokenList 'length' 属性示例

<!DOCTYPE html>
<html lang="en">

<head>
    <title>
        HTML DOMTokenList keys() Method
    </title>
    <style>
        .color {
            background-color: #04af2f;
            color: white;
        }
        .font {
            font-size: 40px;
        }
        .align {
            text-align: center;
        }
    </style>
</head>

<body>
    <p id="add" class="color font align">
        Welcome to Tutorials Point...
    </p>
    <button onclick="fun()">Click me</button>
    <p>Number of tokens in DOMTokenList :</p>
    <p id="token"></p>
    <script>
        function fun() {
            let x = document.getElementById("add").classList.length;
            document.getElementById("token").innerHTML = x;
        }
    </script>
</body>

</html>

支持的浏览器

属性 Chrome Edge Firefox Safari Opera
length 是 8 是 12 是 3.6 是 5.1 是 12.1
html_domtokenlist_reference.htm
广告