HTML DOM item() 方法

属性对象参考手册 属性对象

返回按钮元素的第一个属性名:

<p id="demo">单击按钮获取按钮元素的第一个属性的名称</p>
<button onclick="myFunction()">点我</button>
<script>
  function myFunction() {
    var a = document.getElementsByTagName("BUTTON")[0];
    var x = document.getElementById("demo");
    x.innerHTML = a.attributes.item(0).nodeName;
  }
</script>
<p><strong>注意:</strong> In Internet Explorer 8 及更早的版本,attributes属性将返回所有元素的属性集合,并且在这个例子中,显示不同属性的名称。</p>

尝试一下 »


定义和用法

item() 方法可返回节点列表中处于指定索引号的节点。

语法:

document.getElementsByTagName("BUTTON")[0].attributes.item(0);

另外一种写法:

document.getElementsByTagName("BUTTON")[0].attributes[0];

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主要浏览器都支持 item() 方法


语法

namednodemap.item(index)

参数

参数 类型 描述
index Number 必须。节点列表中指定的节点索引号。

返回值

类型 描述
节点对象 指定索引的节点

技术细节

DOM 版本 Core Level 1

属性对象参考手册 属性对象