본문 바로가기
JS

innerHTML VS textContent

by 율✌️ 2022. 5. 25.

<h1><strong>HELLO WORLD</strong></h1> 이라는 HTML이 있을때,

 

✔️ document.querySelector('h1').innerHTML

     ▶ <strong>HELLO WORLD</strong>

 

✔️ document.querySelector('h1').textContent

    ▶ HELLO WORLD