参考:http://www.w3school.com.cn/jsref/prop_node_firstchild.asp
定义和用法
firstChild 属性返回指定节点的首个子节点,以 Node 对象。
注释:在 HTML 中,文本本身是 HTML 元素的父节点,HEAD 和 BODY 是 HTML 元素的子节点。
实例:
<!DOCTYPE html> <html> <body> <div id="div"><p>我是div的firstChild</p></div> <p id="demo">请点击按钮来获得文档首个子节点的节点名。</p> <button onclick="myFunction()">试一下</button> <script> function myFunction() { var x=document.getElementById("demo"); x.innerHTML=document.getElementById("div").firstChild.nodeName; } </script> </body> </html>
时间: 2024-09-30 15:17:16