HTML DOM 教程
HTML DOM 方法
getElementById() 方法返回带有指定 ID 的元素
源代码:
点击运行 »
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> </head> <body> <p id="intro">Hello World!</p> <p>这个实例演示了 <b>getElementById</b> 方法!</p> <script> x = document.getElementById("intro"); document.write("<p>段落的文本为: " + x.innerHTML + "</p>"); </script> </body> </html>
运行结果:
点击运行 »