运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往空间
<!DOCTYPE html> <html> <style> div { background-color: coral; padding: 16px; } </style> <body> <h1>The Element Object</h1> <h2>The childElementCount Property</h2> <div id="myDIV"> <p>First p element</p> <p>Second p element</p> </div> <p>Number of children in the div element is:</p> <p id="demo"></p> <script> let numb = document.getElementById("myDIV").children.length; document.getElementById("demo").innerHTML = numb; </script> </body> </html>