Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Document.head

현재 번역은 완벽하지 않습니다. 한국어로 문서 번역에 동참해주세요.

현재 document 의 <head> element 를 반환합니다. 하나보다 많은 수의 <head> elements 가 있다면, 첫번째 element 가 반환됩니다.

Syntax

var objRef = document.head;

Example

// in HTML: <head id="my-document-head">
var aHead = document.head;

alert(aHead.id); // "my-document-head";

alert( document.head === document.querySelector("head") ); // true

Notes

document.head 는 읽기 전용입니다. 이 속성에 값을 할당하려 하는 시도는 아무 일 없이 실패하거나, Gecko browser 에서의 ECMAScript Strict Mode 일 경우에는 TypeError 가 throw 될 것입니다.

Specifications

Specification Status Comment
WHATWG HTML Living Standard
The definition of 'Document.head' in that specification.
Living Standard Initial definition.
HTML5.1
The definition of 'Document.head' in that specification.
Working Draft  
HTML5
The definition of 'Document.head' in that specification.
Recommendation  

Browser compatibility

Feature Chrome Firefox (Gecko) Internet Explorer Opera Safari
Basic support 4.0 4.0 (2) 9.0 11.0 5.0
Feature Android Firefox Mobile (Gecko) IE Mobile Opera Mobile Safari Mobile
Basic support (Yes) 4.0 (2) 9.0 (Yes) (Yes)

See Also

문서 태그 및 공헌자

태그: 
 이 페이지의 공헌자: dragmove
 최종 변경: dragmove,