JavaScript 参考手册
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>
运行结果:
点击运行 »