简单教程
提交运行
代码编辑器:
<style> .mystyle { width: 500px; height: 50px; } .anotherClass { background-color: lightblue; } .thirdClass { text-align: center; font-size: 25px; color: black; margin-bottom: 10px; } </style> <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; document.getElementById("demo").innerHTML = x; } </script>
运行结果: