JavaScript 参考手册
HTML DOM classList 属性
查看 <div> 元素有多少个类名
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>蜜蜂教程(mifengjc.com)</title> <style> .mystyle { width: 500px; height: 50px; } .anotherClass { background-color: lightblue; } .thirdClass { text-align: center; font-size: 25px; color: black; margin-bottom: 10px; } </style> </head> <body> <p>点击按钮显示 div 元素有多少个类名。</p> <div id="myDIV" class="mystyle anotherClass thirdClass"> 我是 DIV 元素,我有三个类 </div> <button onclick="myFunction()">点我</button> <p><strong>注意:</strong> Internet Explorer 9 及更早 IE 版本浏览器不支持 classList 属性。</p> <p id="demo"></p> <script> function myFunction() { var x = document.getElementById("myDIV").classList.length; document.getElementById("demo").innerHTML = x; } </script> </body> </html>
运行结果:
点击运行 »