본문 바로가기

개발하자/자바스크립트

document 객체

document.createElement("태그명")
document.createTextNode("텍스트")
객체명.insertBefore(newChild,refChild)
객체명.replaceChild(newChild,oldChild)
객체명.removeChild(oldChild)
객체명.appendChild(newChild)

객체명.parentNode
객체명.childNodes
객체명.previousSibling
객체명.nextSibling