HTML DOMTokenList forEach()
❮ DOMTokenList 对象示例
从 "demo" 获取 DOMTokenList
let list = document.getElementById("demo").classList;
尝试一下 »
为每个标记执行一个函数
list.forEach(
function(token, index) {
text += index + " " + token;
}
);
尝试一下 »
描述
The forEach()
方法对 DOMTokenList 中的每个标记执行回调函数。
另请参阅
语法
nodelist.forEach(function(currentValue, index, arr), thisValue)
参数
function() | 必需。 对每个标记运行的函数。 |
currentValue | 必需。 当前标记的值。 |
index | 可选。 当前标记的索引。 |
arr | 可选。 当前标记的 DOMTokenList。 |
thisValue | 可选。默认 undefined 。传递给函数作为其 this 值的值。 |
返回值
无 |
浏览器支持
domtokenlist.forEach()
是 DOM Level 4 (2015) 的功能。
它在所有现代浏览器中都受支持
Chrome | Edge | Firefox | Safari | Opera |
是 | 是 | 是 | 是 | 是 |
domtokenlist.forEach()
在 Internet Explorer 11(或更早版本)中不受支持。
❮ DOMTokenList 对象