aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/document/importnode/index.html
blob: 5484b1b0a0233404d92a959928b31a6d949e2d04 (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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
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>

<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>