Перевод не завершен. Пожалуйста, помогите перевести эту статью с английского.
Возвращает элемент <head>
текущего документа. Если имеется более одного элемента <head>
, будет возвращен первый из них.
Синтаксис
var objRef = document.head;
Пример
// в 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
is read-only. Trying to assign a value to this property will fail silently or, when in ECMAScript Strict Mode in a Gecko browser, throw a TypeError
.
Specifications
Specification | Status | Comment |
---|---|---|
WHATWG HTML Living Standard Определение 'Document.head' в этой спецификации. |
Живой стандарт | Initial definition. |
HTML5.1 Определение 'Document.head' в этой спецификации. |
Рабочий черновик | |
HTML5 Определение 'Document.head' в этой спецификации. |
Рекомендация |
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 | (Да) | 4.0 (2) | 9.0 | (Да) | (Да) |