노마드 코더/자바스크립트

초보자를 위한 바닐라 자바스크립트 #2-3 Modifying the DOM with JS

리피아 2021. 8. 30. 08:00
728x90

https://www.youtube.com/watch?v=JscDdICRvgo&list=PLLUCyU7SBaR7tOMe-ySJ5Uu1UlEBznxTr&index=17 

 

js

const title = document.getElementById("title");
title.innerHTML = "Hi! From JS";
console.dir(document);

이렇게 입력시

적용할수있는 js소스들이 나옵니다

 

js

const title = document.querySelector(".title");
title.innerHTML = "Hi! From JS";
title.style.color = "red";
document.title = "i own you now"

이렇게 적을시 예전에 적용되어있던 title태그가 나옵니다