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> 要素を返します。

構文

objRef = document.body; //取得 
document.body = objRef; //設定

// in 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> 要素が返ります。

document.body は読取だけでなく設定も可能ですが、新しい bodydocument に設定すると、既存の <body> 要素の子ノードは全て削除されます。

仕様書

ドキュメントのタグと貢献者

タグ: 
 このページの貢献者: fscholz, khalid32, ethertank
 最終更新者: khalid32,