type="text/javascript"> function showode() { var ohtml = document.documentElement //alert(ohtml.nodeName) //alert(ohtml.childNodes. length);//alert(ohtml.childNodes[1].nodeName); //본문 가져오기 //var obody = ohtml.childNodes[1] //레이어별로 레이어 찾기 obody = ohtml.lastChild; //ohtml의 마지막 하위 노드를 빠르게 가져옵니다 //alert(obody.childNodes[0].nodeName) //alert(obody.parentNode.nodeName); 하위 노드를 기반으로 원하는 상위 노드 //alert(obody.previousSibling.nodeName) var ohead = ohtml.childNodes[0]// Alert(ohead.nextSibling.nodeName); }