aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/importnode/index.html
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/web/api/document/importnode/index.html
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/web/api/document/importnode/index.html')
-rw-r--r--files/ja/web/api/document/importnode/index.html111
1 files changed, 111 insertions, 0 deletions
diff --git a/files/ja/web/api/document/importnode/index.html b/files/ja/web/api/document/importnode/index.html
new file mode 100644
index 0000000000..3a6768769d
--- /dev/null
+++ b/files/ja/web/api/document/importnode/index.html
@@ -0,0 +1,111 @@
+---
+title: Document.importNode()
+slug: Web/API/Document/importNode
+tags:
+ - API
+ - DOM
+ - Document
+ - Method
+ - Node
+ - Reference
+ - copy
+ - importNode
+translation_of: Web/API/Document/importNode
+---
+<div>{{APIRef("DOM")}}</div>
+
+<p><span class="seoSummary">{{domxref("Document")}} オブジェクトの <strong><code>importNode()</code></strong> メソッドは、後で現在の文書に挿入するために、他の文書から {{domxref("Node")}} または {{domxref("DocumentFragment")}} の複製を作成します。</span></p>
+
+<p>インポートされたノードは、まだ文書ツリーには含まれません。これを含めるには、 {{domxref("Node.appendChild", "appendChild()")}} や {{domxref("Node.insertBefore", "insertBefore()")}} のような挿入メソッドを、現在の文書ツリーに<em>存在する</em>ノードに対して呼び出す必要があります。</p>
+
+<p>{{domxref("document.adoptNode()")}} とは異なり、元の文書から元のノードは削除されません。インポートされたノードは元のノードの複製です。</p>
+
+<h2 id="Syntax" name="Syntax">構文</h2>
+
+<pre class="syntaxbox notranslate">const <var>importedNode</var> = document.importNode(<var>externalNode</var> [, <var>deep</var>]);
+</pre>
+
+<h3 id="Parameters" name="Parameters">引数</h3>
+
+<dl>
+ <dt><code><var>externalNode</var></code></dt>
+ <dd>現在の文書にインポートする、外部の {{domxref("Node")}} または {{domxref("DocumentFragment")}} です。</dd>
+ <dt><code><var>deep</var></code> {{optional_inline}}</dt>
+ <dd>論理値で、 <code><var>externalNode</var></code> の DOM サブツリー全体をインポートするかどうかを制御します。
+ <ul>
+ <li><code><var>deep</var></code> が <code>true</code> に設定された場合、 <code><var>externalNode</var></code> およびその子孫全てが複製されます。</li>
+ <li><code><var>deep</var></code> が <code>false</code> に設定された場合、 <code><var>externalNode</var></code> のみがインポートされます — 新しいノードには子ノードはない状態になります。</li>
+ </ul>
+
+ <div class="note">
+ <p><strong>中:</strong> DOM4 仕様書では、 <code><var>deep</var></code> 羽オプションの引数で、既定値は <code>true</code> でした。</p>
+
+ <p><strong>最新の仕様書ではこの既定値が変更されました。</strong>新しい既定値は <strong><code>false</code></strong> になりました。</p>
+
+ <p><strong>おすすめの方法:</strong> これは現在もオプションの引数ですが、常に <code><var>deep</var></code> 引数を渡すことが後方互換性<em>および</em>前方互換性には有用です。</p>
+
+ <ul>
+ <li>Gecko 28.0 {{geckoRelease(28)}} では、コンソールでこの引数を省略しないよう開発者に警告しています。</li>
+ <li>Gecko 29.0 {{geckoRelease(29)}}) 以降、深いクローンではなく浅いクローンが既定値になっています。</li>
+ </ul>
+ </div>
+ </dd>
+</dl>
+
+<h3 id="Return_value" name="Return_value">返値</h3>
+
+<p>インポートする側の文書のスコープにコピーされた <code><var>importedNode</var></code> です。</p>
+
+<div class="blockIndicator note">
+<p><strong>注:</strong> <code><var>importedNode</var></code>'s {{domxref("Node.parentNode")}} は <code>null</code> になります。まだ文書ツリーに挿入されていないからです。</p>
+</div>
+
+<h2 id="Example" name="Example">例</h2>
+
+<pre class="brush: js notranslate">const iframe = document.querySelector("iframe");
+const oldNode = iframe.contentWindow.document.getElementById("myNode");
+const newNode = document.importNode(oldNode, true);
+document.getElementById("container").appendChild(newNode);
+</pre>
+
+<h2 id="Notes" name="Notes">注</h2>
+
+<p>{{page("/ja/docs/Web/API/Document/adoptNode", "Notes")}}</p>
+
+<h2 id="Specifications" name="Specifications">仕様書</h2>
+
+<table class="standard-table">
+ <thead>
+ <tr>
+ <th scope="col">仕様書</th>
+ <th scope="col">状態</th>
+ <th scope="col">備考</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td>{{SpecName("DOM WHATWG", "#dom-document-importnode", "document.importNode()")}}</td>
+ <td>{{Spec2("DOM WHATWG")}}</td>
+ <td></td>
+ </tr>
+ <tr>
+ <td>{{SpecName("DOM2 Core", "core.html#Core-Document-importNode", "document.importNode()")}}</td>
+ <td>{{Spec2("DOM2 Core")}}</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>
+
+<p>{{Compat("api.Document.importNode")}}</p>
+
+<h2 id="See_also" name="See_also">関連情報</h2>
+
+<ul>
+ <li>{{domxref("document.adoptNode()")}} このメソッドととても似た動作を行う</li>
+ <li>{{domxref("Node.appendChild()")}}</li>
+ <li>{{domxref("Node.insertBefore()")}}</li>
+</ul>