Document:head 属性

Document 接口的 head 只读属性返回当前文档的 <head> 元素。

示例

html
<!doctype html>
<head id="my-document-head">
  <title>示例:使用 document.head</title>
</head>

<script>
  const theHead = document.head;

  console.log(theHead.id); // "my-document-head";

  console.log(theHead === document.querySelector("head")); // true
</script>

备注

document.head 是只读的。尝试给这个属性赋值将会静默失败,或者在严格模式下抛出 TypeError

规范

Specification
HTML Standard
# dom-document-head-dev

浏览器兼容性

BCD tables only load in the browser

参见