Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.body

概述

返回当前文档中的<body>元素或者<frameset>元素.

语法

var objRef = document.body; 
document.body = objRef;

示例

// 如果HTML结构为<body id="oldBodyElement"></body>,则:
alert(document.body.id); // "oldBodyElement"

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

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

介绍

document.body是包含当前页面内容的元素,对于拥有<body>元素的文档来说,返回的是<body>元素,对于一个拥有<frameset>元素的文档来说,返回的是最外层的<frameset>元素.

该属性是可写的,且为该属性赋的值必须是一个<body>元素.

规范

文档标签和贡献者

 此页面的贡献者: teoli, jsx, ziyunfei
 最后编辑者: jsx,