简单教程
提交运行
代码编辑器:
<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>
运行结果: