Document:head 属性

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

一个 HTMLHeadElement

示例

html
<!doctype html>
<head id="my-document-head">
  <title>Example: using 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

规范

规范
HTML 标准
# dom-document-head-dev

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅