I volontari di MDN non hanno ancora tradotto questo articolo in Italiano. Unisciti a noi e traducilo tu stesso.
Puoi anche consultare l’articolo in English (US).
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
ChildNode
from the children list of its parent. ChildNode.before()
- Inserts a set of
Node
orDOMString
objects in the children list of thisChildNode
's parent, just before thisChildNode
.DOMString
objects are inserted as equivalentText
nodes. ChildNode.after()
- Inserts a set of
Node
orDOMString
objects in the children list of thisChildNode
's parent, just after thisChildNode
.DOMString
objects are inserted as equivalentText
nodes. ChildNode.replaceWith()
- Replaces this
ChildNode
in the children list of its parent with a set ofNode
orDOMString
objects.DOMString
objects are inserted as equivalentText
nodes.
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'ChildNode' in that specification. |
Living Standard | 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. |
Obsolete | 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
Desktop | Mobile | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Basic support | Chrome Full support 1 | Edge Full support Yes | Firefox Full support 23 | IE Full support 9 | Opera Full support 10 | Safari Full support 4 | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support 23 | Opera Android Full support 10 | Safari iOS Full support Yes | Samsung Internet Android Full support Yes |
after | Chrome Full support 54 | Edge Full support 17 | Firefox Full support 49 | IE No support No | Opera Full support 39 | Safari No support No | WebView Android Full support 54 | Chrome Android Full support 54 | Edge Mobile No support No | Firefox Android Full support 49 | Opera Android Full support 39 | Safari iOS No support No | Samsung Internet Android Full support 6.0 |
before | Chrome Full support 54 | Edge Full support 17 | Firefox Full support 49 | IE No support No | Opera Full support 39 | Safari No support No | WebView Android Full support 54 | Chrome Android Full support 54 | Edge Mobile No support No | Firefox Android Full support 49 | Opera Android Full support 39 | Safari iOS No support No | Samsung Internet Android Full support 6.0 |
remove | Chrome Full support 23 | Edge Full support 12 | Firefox Full support 23 | IE No support No | Opera Full support 15 | Safari Full support 7 | WebView Android Full support Yes | Chrome Android Full support Yes | Edge Mobile Full support Yes | Firefox Android Full support 23 | Opera Android Full support 10 | Safari iOS Full support 7 | Samsung Internet Android Full support Yes |
replaceWith | Chrome Full support 54 | Edge Full support 17 | Firefox Full support 49 | IE No support No | Opera Full support 39 | Safari No support No | WebView Android Full support 54 | Chrome Android Full support 54 | Edge Mobile No support No | Firefox Android Full support 49 | Opera Android Full support 39 | Safari iOS No support No | Samsung Internet Android Full support 6.0 |
Legend
- Full support
- Full support
- No support
- No support
- Experimental. Expect behavior to change in the future.
- Experimental. Expect behavior to change in the future.
See also
- The
ParentNode
pure interface.