简单教程
提交运行
代码编辑器:
<style> div { border: 1px solid black; margin: 5px; } </style> <div class="example"> <p>P 元素在在第一个样式为 class="example" 的 Div 元素中。Div 的索引值为 0</p> </div> <div class="example color"> <p>P 元素在在第一个样式为 class="example color" 的 Div 元素中。Div 的索引值为 0</p> </div> <div class="example color"> <p>P 元素在在第二个样式为 class="example color" 的 Div 元素中。Div 的索引值为 1</p> </div> <p>点击按钮修改第一个类为 "example" 的 div 元素的背景颜色</p> <button onclick="myFunction()">点我</button> <p><strong>注意:</strong> Internet Explorer 8 及更早 IE 版本不支持 getElementsByClassName() 方法</p> <script> function myFunction() { var x = document.getElementsByClassName("example color"); x[0].style.backgroundColor = "red"; } </script>
运行结果: