W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!DOCTYPE html> <html> <body> <h1>HTMLCollection 对象</h1> <p>使用 getElementsByTagName() 方法来返回 HTMLCollection。</p> <p>此页面上 P 元素的数量:</p> <script> var x = document.getElementsByTagName("P"); document.write(x.length); </script> </body> </html>