Esta tradução está incompleta. Ajude atraduzir este artigo.
Cria uma cópia de um nó a partir de um documento externo para ser inserido no document atual.
Sintaxe
var node = document.importNode(externalNode, deep);
node
O novo nó que será importado no documento. A propriedade parentNode do novo nó é null, desde que ele não foi inserido na árvores do documento.
externalNode
O nó de outro documento para ser importado.
deep
Um boolean, indicando se os nós filhos, do nó a ser importado, devem ser importados também.
Note: In the DOM4 specification (as implemented in Gecko 13.0 (Firefox 13 / Thunderbird 13 / SeaMonkey 2.10)), deep
is an optional argument. If omitted, the method acts as if the value of deep
was true
, defaulting to using deep cloning as the default behavior. To create a shallow clone, deep
must be set to false
.
This behavior has been changed in the latest spec, and if omitted, the method will act as if the value of deep
was false
. Though It's still optional, you should always provide the deep
argument both for backward and forward compatibility. With Gecko 28.0 (Firefox 28 / Thunderbird 28 / SeaMonkey 2.25 / Firefox OS 1.3), the console warned developers not to omit the argument. Starting with Gecko 29.0 (Firefox 29 / Thunderbird 29 / SeaMonkey 2.26)), a shallow clone is defaulted instead of a deep clone.
Exemplo
var iframe = document.getElementsByTagName("iframe")[0]; var oldNode = iframe.contentWindow.document.getElementById("myNode"); var newNode = document.importNode(oldNode, true); document.getElementById("container").appendChild(newNode);
Notas
O nó original não é removido do documento de origem. O nó importado é um clone do original.
Nodes from external documents should be cloned using document.importNode()
(or adopted using document.adoptNode()
) before they
can be inserted into the current document. For more on the Node.ownerDocument
issues, see the
W3C DOM FAQ.
Firefox doesn't currently enforce this rule (it did for a while during the development of Firefox 3, but too many sites break when this rule is enforced). We encourage Web developers to fix their code to follow this rule for improved future compatibility.
Especificação
Specification | Status | Comment |
---|---|---|
DOM The definition of 'document.importNode()' in that specification. |
Living Standard | |
Document Object Model (DOM) Level 2 Core Specification The definition of 'document.importNode()' in that specification. |
Recommendation | Initial definition |
Compatibilidade nos Browsers
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
DOM 2 version | (Yes) | 1.0 (1.7 or earlier) | 9.0 | 9.0 | (Yes) |
DOM 4 version ( deep optional) |
(Yes) | 10 (10) | Não suportado | Não suportado | Nightly build |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
DOM 2 version | ? | 1.0 (1) | ? | ? | ? |
DOM 4 version ( deep optional) |
? | 10.0 (10) | ? | ? | ? |