时间:2021-07-01 10:21:17 帮助过:8人阅读
baidu.com
2345.com
sina.com
google.com
go home
this is span
123456
结果为:3; 3表示文本节点。
pn.lastChild.nodeValue;//运行结果为:123456
pn.firstChild;//获取mian元素节点的第一个子节点改节点为元素节点。
pn.firstChild.innerHTML; //获取该节点的文本。
pn.firstChild.href;//获取该节点的href属性。
var parentSpan=document.getElementById("span1").parentNode;//获取id为span1的父节点
alert(parentSpan.id); //获取id为span1的父节点的ID;
script>