目录

HTML DOMTokenList item()

❮ DOMTokenList 对象

示例

从 "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

❮ DOMTokenList 对象