<script type="text/javascript">
var mylist = document.getElementById("tcon");
var hCon=mylist.parentNode.parentNode.parentNode.lastChild;
document.write(hCon.innerHTML);
</script>
<script type="text/javascript"> // 根据id获得一个节点的dom对象 var mylist = document.getElementById("tcon"); // 获得mylist的父节点的父节点的父节点(曾祖父节点)的最后一个子节点 var hCon=mylist.parentNode.parentNode.parentNode.lastChild; // 输出hCon节点的html内容 document.write(hCon.innerHTML); </script>
爸爸的爸爸最后一个孩子
哦哦,知道了,谢谢
<script type="text/javascript"> // 通过id多的一个dom对象 var mylist = document.getElementById("tcon"); // 取得mylist的父节点的父节点的父节点(曾祖父节点)的最后一个子节点 var hCon=mylist.parentNode.parentNode.parentNode.lastChild; // 在浏览器输出hCon document.write(hCon.innerHTML); </script>