Replaces an existing child element with a new child element.
![]() |
Syntax
object.replaceChild(newChild, oldChild)Parameters
- newChild [in]
-
Type: IHTMLDOMNode
Object that specifies the new element to be inserted into the document.
- oldChild [in]
-
Type: IHTMLDOMNode
Object that specifies the existing element to be replaced.
Return value
Type: IHTMLDOMNode
Returns a reference to the object that is replaced.
Standards information
Remarks
The node to be replaced must be an immediate child of the parent object. The new node must be created using the createElement method.
This property is accessible at run time. If elements are removed at run time, before the closing tag is parsed, areas of the document might not render.
Windows Internet Explorer 9. Exceptions are only supported when webpages are displayed in IE9 Standards mode.
In Microsoft Internet Explorer 6, This method now applies to the attribute object.
Examples
This example uses the replaceChild method to replace a bold element from a div with an italic element.
<head>
<script>
function replaceElement()
{
//The first child of the div is the bold element.
var oChild=Div1.children(0);
var sInnerHTML = oChild.innerHTML;
if (oChild.tagName=="B")
{
oNewChild=document.createElement("I");
Div1.replaceChild(oNewChild, oChild);
oNewChild.innerHTML=sInnerHTML
}
else
{
oNewChild=document.createElement("B");
Div1.replaceChild(oNewChild, oChild);
oNewChild.innerHTML=sInnerHTML
}
}
</script>
</head>
<body>
<div id="Div1" onclick="replaceElement()">
Click anywhere in this sentence to toggle this <strong>word</strong>
between bold and italic.</div>
</body>
See also
- a
- abbr
- acronym
- address
- attribute
- b
- bdo
- big
- blockQuote
- body
- button
- caption
- center
- cite
- code
- col
- colGroup
- comment
- dd
- del
- dfn
- dir
- div
- dl
- documentType
- dt
- em
- fieldSet
- font
- form
- frameSet
- head
- hn
- html
- i
- iframe
- input type=button
- input type=checkbox
- input type=file
- input type=hidden
- input type=image
- input type=password
- input type=radio
- input type=reset
- input type=submit
- input type=text
- ins
- kbd
- label
- legend
- li
- listing
- map
- marquee
- menu
- nextID
- ol
- option
- p
- plainText
- pre
- ProcessingInstruction
- q
- s
- samp
- select
- small
- span
- strike
- strong
- sub
- sup
- table
- tBody
- td
- textArea
- tFoot
- th
- tHead
- tr
- tt
- u
- ul
- var
- xmp
Send comments about this topic to Microsoft
Build date: 11/27/2012
