运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The Element Object</h1> <h2>The children.length Property</h2> <p>How many elements does "myDIV" have?</p> <p id="demo"></p> <div id="myDIV"> <p>I am a paragraph</p> <p>I am a paragraph</p> <p>I am a paragraph</p> </div> <script> let count = document.getElementById("myDIV").children.length; document.getElementById("demo").innerHTML = count; </script> </body> </html>