Read1 DOM 명령어 createElement (생성) add (추가) innerHTML HTML 또는 XML 마크업을 가져오거나 설정 // (XSS 공격의 위험이 있음) textContent 텍스트 노드로 대체 (XSS 공격의 위험이 없음) appendChild (부모 노드의 자식 노드 리스트 중 마지막 자식노드에 삽입) prepend (첫 자식노드 앞에 삽입) 사용 예 let testBox = document.createElement('div')// tag명 testBox.classList.add('.commandBox')// id, class 명 testBoxinnerHTML = comment.user// comment 파라메타에 속한 user testBox.textContent = comment.user// comme.. 2020. 7. 6. 이전 1 다음