diff options
author | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-02-26 00:16:32 +0900 |
---|---|---|
committer | Masahiro FUJIMOTO <mfujimot@gmail.com> | 2022-03-05 22:14:26 +0900 |
commit | ed6203f957a5616efa135b87368715645b251444 (patch) | |
tree | 0a391995410e2f3eb5df477b8620296ed64ac856 /files/ja/web/api/node/ownerdocument | |
parent | 0e7fc92daa74711762322b806e2371ff19d2fed3 (diff) | |
download | translated-content-ed6203f957a5616efa135b87368715645b251444.tar.gz translated-content-ed6203f957a5616efa135b87368715645b251444.tar.bz2 translated-content-ed6203f957a5616efa135b87368715645b251444.zip |
2021/11/08 時点の英語版に同期
Diffstat (limited to 'files/ja/web/api/node/ownerdocument')
-rw-r--r-- | files/ja/web/api/node/ownerdocument/index.md | 68 |
1 files changed, 19 insertions, 49 deletions
diff --git a/files/ja/web/api/node/ownerdocument/index.md b/files/ja/web/api/node/ownerdocument/index.md index f6eef4f570..75cf471b02 100644 --- a/files/ja/web/api/node/ownerdocument/index.md +++ b/files/ja/web/api/node/ownerdocument/index.md @@ -2,65 +2,35 @@ title: Node.ownerDocument slug: Web/API/Node/ownerDocument tags: - - DOM - - Gecko - - Node + - プロパティ + - リファレンス + - 読み取り専用 +browser-compat: api.Node.ownerDocument translation_of: Web/API/Node/ownerDocument --- -<div>{{ApiRef}}</div> +{{APIRef("DOM")}} -<h2 id="Summary" name="Summary">概要</h2> +**`ownerDocument`** は {{domxref("Node")}} インターフェイスの読み取り専用プロパティで、このノードの最上位の文書オブジェクトを返します。 -<p><code>ownerDocument</code> プロパティは、指定ノードを内包するノードツリーのトップレベルのドキュメントオブジェクトを返します。</p> +## 値 -<h2 id="Syntax" name="Syntax">構文</h2> +すべての子ノードが作成された最上位の {{domxref("Document")}} オブジェクトです。 -<pre class="syntaxbox"><var>document</var> = element.ownerDocument -</pre> +このプロパティが文書自身のノードで使用された場合、値は `null` になります。 -<ul> - <li><code>document</code> : 指定要素の祖先である {{domxref("document")}} オブジェクト</li> -</ul> +## 例 -<h2 id="Example" name="Example">例</h2> +```js +// 指定された "p" から、文書オブジェクトの子である最上位の HTML を取得します。 -<pre class="brush:js">var doc = p.ownerDocument; // ノード p のノードツリー上のトップレベル document オブジェクトを取得 -var html = doc.documentElement; // owner のドキュメント要素を取得 +const d = p.ownerDocument; +const html = d.documentElement; +``` -alert(html); // [object HTMLHtmlElement] -</pre> +## 仕様書 -<h2 id="Notes" name="Notes">注記</h2> +{{Specifications}} -<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> +{{Compat}} |