--- title: Document.head slug: Web/API/Document/head tags: - API - Document - HTML DOM - Property - Reference translation_of: Web/API/Document/head ---
{{domxref("Document")}} 인터페이스의 head
읽기 전용 속성은 현재 문서의 {{htmlelement("head")}} 요소를 나타냅니다.
<!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>
Document.head
는 읽기 전용입니다. 값을 할당하려고 시도하면 조용히 실패하거나, 엄격 모드에서는 {{jsxref("TypeError")}}가 발생합니다.
Specification | Status | Comment |
---|---|---|
{{SpecName('HTML WHATWG','dom.html#dom-document-head','Document.head')}} | {{Spec2('HTML WHATWG')}} | Initial definition. |
{{SpecName('HTML5.1','dom.html#dom-document-head','Document.head')}} | {{Spec2('HTML5.1')}} | |
{{SpecName('HTML5 W3C','dom.html#dom-document-head','Document.head')}} | {{Spec2('HTML5 W3C')}} |
{{Compat("api.Document.head")}}