运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The NodeList Object</h1> <h2>The item() Method</h2> <p>Click "Change" to change the color of all elements with class="child".</p> <button onclick="myFunction()">Change</button> <p class="child">A p element with class="child".</p> <p class="child">A p element with class="child".</p> <p>A p element with a <span class="child">span with class="child"</span>.</p> <script> function myFunction() { const list = document.querySelectorAll(".child"); for (let i = 0; i < list.length; i++) { list[i].style.color = "red"; } } </script> </body> </html>