JavaScript 参考手册
HTML DOM attributes 属性
获取元素属性的集合
源代码:
点击运行 »
<p id="demo">单击按钮,查看按钮元素有多少个属性:</p> <button onclick="myFunction()">点我</button> <script> function myFunction() { var btn = document.getElementsByTagName("BUTTON")[0]; var x = document.getElementById("demo"); x.innerHTML = btn.attributes.length; } </script> <p>结果应为1(按钮元件的onclick属性)</p> <p><strong>注意:</strong> 在Internet Explorer 8 或者更早版本中,attributes 属性将返回所有可能元素的集合 ,并将在这个示例中显示一个比1更高的数字。</p>
运行结果:
点击运行 »