HTML - DOMTokenList keys() 方法



HTML DOMTokenList **keys()** 方法返回一个迭代器,允许我们遍历令牌列表中包含的所有键。这些键是无符号整数。

语法

domtokenlist.keys();

参数

此方法不接受任何参数。

返回值

它返回一个迭代器。

HTML DOMTokenList 'keys()' 方法示例

以下示例返回令牌列表中令牌的键。

<!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>Keys are :</p>
    <p id="token"></p>
    <script>
        let result = document.getElementById("token");
        function fun() {
            let x = document.getElementById("add").classList.keys();
            for(let i of x){
                result.innerHTML += i +"<br>";
            }
        }
    </script>
</body>
</html>

支持的浏览器

方法 Chrome Edge Firefox Safari Opera
keys() 是 42 是 16 是 50 是 10.1 是 29
html_domtokenlist_reference.htm
广告