运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1>The HTMLCollection Object</h1> <h2>The item() Method</h2> <div id="myDIV" style="border:1px solid black; padding: 16px"> <p>I am one.</p> <p>I am two.</p> <p>I am three.</p> </div> <p>Click "Get" to get the content of the second p element inside "myDIV":</p> <button onclick="myFunction()">Get</button> <p id="demo"></p> <script> function myFunction() { const div = document.getElementById("myDIV"); const collection = div.getElementsByTagName("p"); let text = collection[1].innerHTML; document.getElementById("demo").innerHTML = text; } </script> </body> </html>