javascript 문법도 잘 모르고.. 공부를 안하다보니 까먹어서 javascript를 공부하고 있었다. 근데 응?? textContent? innerText과의 차이점이뭐지? 나도몰랑ㅋ 그래서 구글링을 해보다 알게되었다. 쉽게 설명하자면.. textContent와 innerText는 element.textContent < 이런식으로 쓰인다. ok? -------------------------------------------------------- 소스 나는 개똥 벌레 ① var example = document.querySelector('p').innerText; ② var example2 = document.querySelector('p').textContent; ------------------..