var mylist = document.getElementById("tcon");
var father = mylist.parentNode.parentNode.parentNode.lastChild.nodeVaule;
document.write(father);
mylist.parentNode.parentNode.parentNode.lastChild到这为止,指代的是一个元素节点,元素节点的nodeValue不是null就是undefined.这一点你可以去看node的哪几种类型以及它们的nodeValue。
如果想获得元素里的文本内容,你需要:
var father=mylist.parentNode.parentNode.parentNode.lastChild;
document.write(father.innerHTML)