<ulid="target"> <li>HTML</li> <li>CSS</li></ul><inputtype="button"onclick="callAppendChild();"value="appendChild()" /><inputtype="button"onclick="callInsertBefore();"value="insertBefore()" /><script>functioncallAppendChild(){let target =document.getElementById('target');let li =document.createElement('li');let text =document.createTextNode('JavaScript');li.appendChild(text);target.appendChild(li); }functioncallInsertBefore(){let target =document.getElementById('target');let li =document.createElement('li');let text =document.createTextNode('jQuery');li.appendChild(text);target.insertBefore(li,target.firstChild); }</script>
노드 제거
노드 제거를 위해서는 아래 API를 사용한다.
이 때 메소드는 삭제 대상의 부모 노드 객체의 것을 실행해야 한다는 점에 유의하자.