运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,暗/亮
转到 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The children Property</h2> <p>The tag names of the body's children are:</p> <p id="demo"></p> <script> const collection = document.body.children; let text = ""; for (let i = 0; i < collection.length; i++) { text += collection[i].tagName + "<br>"; } document.getElementById("demo").innerHTML = text; </script> </body> </html>