blob: f6eef4f5703f2ed23adec8a09994f9c41d3a3319 (
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
|
---
title: Node.ownerDocument
slug: Web/API/Node/ownerDocument
tags:
- DOM
- Gecko
- Node
translation_of: Web/API/Node/ownerDocument
---
<div>{{ApiRef}}</div>
<h2 id="Summary" name="Summary">概要</h2>
<p><code>ownerDocument</code> プロパティは、指定ノードを内包するノードツリーのトップレベルのドキュメントオブジェクトを返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><var>document</var> = element.ownerDocument
</pre>
<ul>
<li><code>document</code> : 指定要素の祖先である {{domxref("document")}} オブジェクト</li>
</ul>
<h2 id="Example" name="Example">例</h2>
<pre class="brush:js">var doc = p.ownerDocument; // ノード p のノードツリー上のトップレベル document オブジェクトを取得
var html = doc.documentElement; // owner のドキュメント要素を取得
alert(html); // [object HTMLHtmlElement]
</pre>
<h2 id="Notes" name="Notes">注記</h2>
<p>このプロパティによって返される <code>document</code> オブジェクトは、実際の HTML 文書中ですべての子ノードの属するメインオブジェクトです。<code>document</code> ノード自身に対しこのプロパティを用いた場合、戻り値は <code>null</code> となります。</p>
<h2 id="Browser_compatibility" name="Browser_compatibility">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th>Specification</th>
<th>Status</th>
<th>Comment</th>
</tr>
<tr>
<td>{{SpecName("DOM4", "#dom-node-ownerdocument", "Node.ownerDocument")}}</td>
<td>{{Spec2("DOM4")}}</td>
<td> </td>
</tr>
<tr>
<td>{{SpecName("DOM3 Core", "core.html#node-ownerDoc", "Node.ownerDocument")}}</td>
<td>{{Spec2("DOM3 Core")}}</td>
<td>No change</td>
</tr>
<tr>
<td>{{SpecName("DOM2 Core", "core.html#node-ownerDoc", "Node.ownerDocument")}}</td>
<td>{{Spec2("DOM2 Core")}}</td>
<td>Initial definition</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2>
<p>{{Compat("api.Node.ownerDocument")}}</p>
|