Document.head
예제
html
<!doctype html>
<head id="my-document-head">
<title>Example: using document.head</title>
</head>
<script>
let theHead = document.head;
console.log(theHead.id); // "my-document-head";
console.log(theHead === document.querySelector("head")); // true
</script>
참고
명세
Specification |
---|
HTML Standard # dom-document-head-dev |
브라우저 호환성
BCD tables only load in the browser