Document.head
io error: No such file or directory (os error 2) (/home/runner/work/yari/yari/mdn/translated-content/files/zh-tw/web/api/document/index.md)
回傳當前文件的 <head>
元素。如果該文件有超過一個 <head>
元素,那只會回傳第一個 <head>
元素。
語法
var objRef = document.head;
範例
js
// in HTML: <head id="my-document-head">
var aHead = document.head;
alert(aHead.id); // "my-document-head";
alert(document.head === document.querySelector("head")); // true
備註
document.head
是「唯讀」。若是想要將 document.head
改成別的值會失敗,這時有些瀏覽器不會告知任何錯誤訊息;有些,例如在 ECMAScript Strict 模式下 的 Gecko 瀏覽器,會給出 TypeError
異常。
規範
Specification |
---|
HTML Standard # dom-document-head-dev |
瀏覽器相容性
BCD tables only load in the browser