目录

HTML DOMTokenList forEach()

❮ DOMTokenList 对象

示例

从 "demo" 获取 DOMTokenList:

let list = document.getElementById("demo").classList;
亲自试一试 »

为每个令牌执行一个函数:

list.forEach(
  function(token, index) {
    text += index + " " + token;
  }
);
亲自试一试 »

描述

这个forEach()方法为 a 中的每个标记执行回调函数DOM令牌列表




语法

nodelist.forEach( function(currentValue, index, arr), thisValue)

参数

function() Required.
A function to run for each token.
currentValue Required.
The value of the current token.
index Optional.
The index of the current token.
arr Optional.
The DOMTokenList of the current token.
thisValue Optional. Default undefined.
A value passed to the function as its this value.

返回值

没有任何

浏览器支持

domtokenlist.forEach()是 DOM Level 4 (2015) 功能。

所有现代浏览器都支持它:

Chrome Edge Firefox Safari Opera
Yes Yes Yes Yes Yes

domtokenlist.forEach()Internet Explorer 11(或更早版本)不支持。


❮ DOMTokenList 对象