상세 컨텐츠

본문 제목

자바스크립트 노드 관련 메서드

관리X 과거글

by 까먹기전에 2015. 2. 28. 19:30

본문

반응형





# 노드관련 메서드

 document.createElement("태그명")


 document.createTextNode("텍스트")


 객체명.insertBefore(newChild,refChild)


 객체명.replaceChild(newChild,oldChild)


 객체명.removeChild(oldChild)


 객체명.appendChild(newChild)


 객체명.parentNode 


 객체명.childNodes


 객체명.previousSibling 


 객체명.nextSibling // 이건 이상한 text가 자꾸 나와서 .nextSibling.nextSibling 해야


제가 원하는 elements가 나오더라구요


 객체명.firstChild


 객체명.lastChild 



관련글 더보기