Esta tradução está incompleta. Por favor, ajude a traduzir este artigo.
The ChildNode interface contains methods that are particular to Node objects that can have a parent.
ChildNode is a raw interface and no object of this type can be created; it is implemented by Element, DocumentType, and CharacterData objects.
Properties
There are neither inherited, nor specific properties.
Methods
There are no inherited methods.
ChildNode.remove()- Removes this
ChildNodefrom the children list of its parent. ChildNode.before()- Inserts a set of
NodeorDOMStringobjects in the children list of thisChildNode's parent, just before thisChildNode.DOMStringobjects are inserted as equivalentTextnodes. ChildNode.after()- Inserts a set of
NodeorDOMStringobjects in the children list of thisChildNode's parent, just after thisChildNode.DOMStringobjects are inserted as equivalentTextnodes. ChildNode.replaceWith()- Replaces this
ChildNodein the children list of its parent with a set ofNodeorDOMStringobjects.DOMStringobjects are inserted as equivalentTextnodes.
Specifications
| Specification | Status | Comment |
|---|---|---|
| DOM The definition of 'ChildNode' in that specification. |
Padrão em tempo real | Split the ElementTraversal interface in ParentNode and ChildNode. previousElementSibling and nextElementSibling are now defined on the latter. The CharacterData and DocumentType implemented the new interfaces. Added the remove(), before(), after() and replaceWith() methods. |
| Element Traversal Specification The definition of 'ElementTraversal' in that specification. |
Obsoleto | Added the initial definition of its properties to the ElementTraversal pure interface and use it on Element. |
Polyfill
External on github: childNode.js
Browser compatibility
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
| Feature | Chrome | Edge | Firefox (Gecko) | Internet Explorer | Opera | Safari |
|---|---|---|---|---|---|---|
Basic support (on Element) |
1.0 | (Yes) | 23 (23) | 9.0 | 10.0 | 4.0 |
Support on DocumentType and CharacterData |
23.0 | Não suportado | 23 (23) | Não suportado | 16.0 | Não suportado |
remove() |
29.0 | (Yes) | 23 (23) | Não suportado | 16.0 | Não suportado |
before(), after(), and replaceWith() |
54.0 | Não suportado | 49 (49) | Não suportado | 39 | Não suportado |
| Feature | Android | Android Webview | Edge | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile | Chrome for Android |
|---|---|---|---|---|---|---|---|---|
Basic support (on Element) |
(Yes) | (Yes) | (Yes) | 23.0 (23) | (Yes) | 10.0 | (Yes) | (Yes) |
Support on DocumentType and CharacterData |
(Yes) | (Yes) | Não suportado | 23.0 (23) | Não suportado | 16.0 | Não suportado | (Yes) |
remove() |
(Yes) | (Yes) | (Yes) | 23.0 (23) | Não suportado | 16.0 | Não suportado | (Yes) |
before(), after(), and replaceWith() |
Não suportado | 54.0 | Não suportado | 49.0 (49) | Não suportado | 39 | Não suportado | 54.0 |
See also
- The
ParentNodepure interface.

