运行 ❯
获取您的
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The NodeList Object</h1> <h2>The length Property</h2> <!-- This is a comment node! --> <p>The number of child nodes in the body element are:</p> <p id="demo"></p> <p>Whitespace between elements are text nodes. Comments are also nodes.</p> <script> const nodeList = document.body.childNodes; let number = nodeList.length; document.getElementById("demo").innerHTML = number; </script> </body> </html>