运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗色/亮色
转到 Spaces
<!DOCTYPE html> <html> <style> div { border: 1px solid black; padding: 16px; font-size: 24px; } </style> <body> <h1>The Element Object</h1> <h2>The getElementsByClassName() Method</h2> <div id="myDIV"> <p class="child">I am a paragraph.</p> <p class="child">I am a paragraph.</p> <p class="child">I am a paragraph.</p> <p>I am a paragraph <span class="child">with a span element</span>.</p> </div> <p>Click "Change" to change the color of all elements with class="child":</p> <button onclick="myFunction()">Change</button> <script> function myFunction() { const element = document.getElementById("myDIV"); let nodes = element.getElementsByClassName("child"); for (let i = 0; i < nodes.length; i++) { nodes[i].style.color = "red"; } } </script> </body> </html>