运行 ❯
获取您
自己
的网站
×
更改方向
保存代码
更改主题,暗色/亮色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The nodeName Property</h2> <p>The node names of the body element's child nodes.</p> <p>Whitespaces between elements are considered nodes (#text).</p> <!-- This is a comment. --> <div>Comments are considered nodes (#comments).</div> <p id="demo"></p> <script> const nodes = document.body.childNodes; let text = ""; for (let i = 0; i < nodes.length; i++) { text += nodes[i].nodeName + "<br>"; } document.getElementById("demo").innerHTML = text; </script> </body> </html>