编辑下面的代码:【加编码】
<html> <body> <p>Hello World!</p> <p>The DOM is very useful!</p> <p>This example demonstrates the <b>length</b> property.</p> <script> x=document.getElementsByTagName("p"); for (i=0;i<x.length;i++) { document.write(x[i].innerHTML); document.write("<br>"); } </script> </body></html>
结果: 【此窗口】 帮助?
Try it Yourself - © 自强学堂