从 "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(或更早版本)不支持。
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!