从 "demo" 获取 DOMTokenList:
let list = document.getElementById("demo").classList;
亲自试一试 »
获取列表中的第一项:
let item = list.item(0);
亲自试一试 »
这会产生相同的结果:
let item = list[0];
亲自试一试 »
这个item()
方法返回a中指定索引处的令牌DOM令牌列表。
有两种方法可以访问指定索引处的令牌:
list.item(index)
list[index]
最简单、最常用的方法是[索引]。
domtokenlist.item(
index)
domtokenlist[
index]
Parameter | Description |
index | Required. The index of the token in the list. The tokens are sorted as they appear in the document. The index starts at 0. |
类型 | 描述 |
字符串 | 指定索引处的令牌。null 如果索引超出范围。 |
domtokenlist.item()
所有浏览器都支持:
Chrome | IE | Edge | Firefox | Safari | Opera |
Yes | 10-11 | Yes | Yes | Yes | Yes |
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!