728x90 outerHTML1 1.8 Using JavaScript Strings to Create and Add Element and Text Nodes to the DOM innserHTML, outerHTML, textContent, insertAdjacentHTML 프로퍼티는 js 문자열을 사용해서 노드들을 돔에 생성, 추가할 수 있게 해준다. 1 2 3 4 5 6 7 8 9 10 11 //create a strong element and text node and add it to the DOM document.getElementById('A').innerHTML = 'Hi'; /* create a div element and text node to replace (notice span#B is replaced) */ document.getElementById('B').outerHTML = 'Whats Shaking' //create a text node and upd.. 2021. 8. 27. 이전 1 다음 728x90