aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/body/index.html
blob: cf20308c6b0acada9df510f1268a26ec0e0f53d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
---
title: Document.body
slug: Web/API/Document/body
tags:
  - API
  - Document
  - HTML DOM
  - Property
  - Reference
  - プロパティ
translation_of: Web/API/Document/body
---
<div>{{APIRef("DOM")}}</div>

<p><strong><code>Document.body</code></strong> プロパティは、その文書の {{HTMLElement("body")}} または {{HTMLElement("frameset")}} ノードを表し、そのような要素がなければ <code>null</code> になります。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox notranslate">const <var>objRef</var> = document.body
document.body = <var>objRef</var></pre>

<h2 id="Example" name="Example"></h2>

<pre class="brush:js notranslate">// Given this HTML: &lt;body id="oldBodyElement"&gt;&lt;/body&gt;
alert(document.body.id); // "oldBodyElement"

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

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

<h2 id="Notes" name="Notes"></h2>

<p><code>document.body</code> は文書の内容を持つ要素です。 <code>&lt;body&gt;</code> の内容を持つ文書では <code>&lt;body&gt;</code> 要素を返し、フレームセット文書では、これは最も外側の <code>&lt;frameset&gt;</code> 要素を返します。</p>

<p><code>body</code> プロパティは設定が可能ですが、文書に新しい <code>body</code> を設定すると、既存の <code>&lt;body&gt;</code> 要素の子ノードは全て削除されます。</p>

<h2 id="Specification" name="Specification">仕様書</h2>

<table class="spectable standard-table">
 <thead>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">状態</th>
   <th scope="col">備考</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('HTML WHATWG','dom.html#dom-document-body','Document.body')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5.1','dom.html#dom-document-body','Document.body')}}</td>
   <td>{{Spec2('HTML5.1')}}</td>
   <td></td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C','dom.html#dom-document-body','Document.body')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td></td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>

<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>

<div>{{Compat("api.Document.body")}}</div>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{domxref("document.head")}}</li>
</ul>