fmpq.com
源代码:
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Fmpq教程(fmpq.com)</title> </head> <body> <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> </body> </html>
运行结果