HTML DOM item() 方法
HTML DOM item() 方法可返回节点列表中处于指定索引号的节点
语法
namednodemap.item( index )
实例
document.getElementsByTagName("button")[0].attributes.item(0);
另外一种写法
document.getElementsByTagName("button")[0].attributes[0];
浏览器支持
Yes | Yes | Yes | Yes | Yes |
参数
参数 | 类型 | 描述 |
---|---|---|
index | Number | 必须。节点列表中指定的节点索引号 |
返回值
类型 | 描述 |
---|---|
节点对象 | 指定索引的节点 |
范例
返回按钮元素的第一个属性名
document.getElementsByTagName("BUTTON")[0].attributes.item(0).nodeName;