[JavaScript] 자바스크립트 <html>,<body> 요소 읽어 오기
133_자바스크립트 , 요소 읽어 오기 [적용] 요소를 가져오고 싶을 때 요소에서 클래스 작업을 하고 싶을 때 [문법] 속성 의미 타입 document.documentElement 루트 요소 html 요소 document.head head 요소 head 요소 document.body body 요소 body 요소 [내용] document.documentElement는 문서의 루트 요소를 지정한다. HTML 문서의 html 요소를 말한다. 'console.dir(dicument.documentElement)'의 콘솔 로그에서 html 요소가 반환되는 것을 확인할 수 있다. document.head는 head 요소를 가져오며, head에 script 태그와 link 태그를 동적으로 삽입할 수 있다. const..
2022.07.05