728x90 outerText1 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 다음 728x90