运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The children Property</h2> <p>Click "Change" to change the background of all child elements of body.</p> <button onclick="myFunction()">Change</button> <h2>I am a h2 element</h2> <div>I am a div element</div> <span>I am a span element</span> <script> function myFunction() { const collection = document.body.children; for (let i = 0; i < collection.length; i++) { collection[i].style.backgroundColor = "red"; } } </script> </body> </html>