728x90 textContent2 1.9 Extracting Parts of the DOM Tree as JavaScript Strings innserHTML, outerHTML, textContent는 돔에 생성하고 추가할 수 있을 뿐만 아니라 돔의 일부를 js 문자열로 읽어올 수 있다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 Hi Dude ! console.log(document.getElementById('A').innerHTML); //logs 'Hi' console.log(document.getElementById('A').outerHTML); /* logs Hi */ /* notice that all text is returned even if it's in child element nodes (i.e., !) */ console.log(document.getElementById('B').textConte.. 2021. 8. 28. 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