求帮助,看不懂parentNode的使用?
document.write("课程内容:<br>"+mylist.parentNode.parentNode.parentNode.lastChild.innerHTML);
document.write("节点个数:"+mylist.parentNode.parentNode.parentNode.childNodes.length+"<br>");
document.write("parent1:"+mylist.parentNode.nodeName+"<br>");
document.write("parent2:"+mylist.parentNode.parentNode.nodeName+"<br>");
document.write("parent3:"+mylist.parentNode.parentNode.parentNode.nodeName+"<br>");
这些parentNode是怎么使用的,还有真的不明白为什么使用那么多个,谁可以详细说明一下呢