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