运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <style> .example { border: 1px solid black; margin: 5px; } </style> <body> <h1>The Document Object</h1> <h2>The querySelectorAll() Method</h2> <h3>Change the background color of all p elements:</h3> <h1>A h1 element</h1> <div>A div element</div> <p>A p element.</p> <p>A p element.</p> <div class="example"> <p>A p element inside a div element.</p> </div> <script> const nodeList = document.querySelectorAll("p"); for (let i = 0; i < nodeList.length; i++) { nodeList[i].style.backgroundColor = "red"; } </script> </body> </html>