值
一個 HTMLHeadElement。
示例
html
<!doctype html>
<head id="my-document-head">
<title>Example: using document.head</title>
</head>
js
const theHead = document.head;
console.log(theHead.id); // "my-document-head";
console.log(theHead === document.querySelector("head")); // true
注意
規範
| 規範 |
|---|
| HTML # dom-document-head-dev |
瀏覽器相容性
載入中…