Document: body 属性

Document.body 属性表示当前文档的 <body><frameset> 节点,如果不存在此类元素,则为 null

示例

js
// Given this HTML: <body id="oldBodyElement"></body>
alert(document.body.id); // "oldBodyElement"

const aNewBodyElement = document.createElement("body");

aNewBodyElement.id = "newBodyElement";
document.body = aNewBodyElement;
alert(document.body.id); // "newBodyElement"

备注

document.body 是包含文档内容的元素。在具有 <body> 内容的文档中,返回 <body> 元素,在框架集文档中,返回最外层的 <frameset> 元素。

虽然 body 属性是可设置的,但将新主体设置到文档上将有效地删除现有 <body> 元素的所有当前子元素。

规范

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

浏览器兼容性

BCD 表格仅在浏览器中加载

另请参阅