Creates a text string from the specified value.
Syntax
oTextNode = document.createTextNode( [sText])
Parameters
sText |
Optional.
String爐hat specifies the nodeValue property of the text node. |
Return Value
Returns爐he created TextNode object.
Example
<SCRIPT>
function fnChangeNode(){
var oTextNode = document.createTextNode("New Text");
var oReplaceNode = oSpan.childNodes(0);
oReplaceNode.replaceNode(oTextNode);
}
</SCRIPT>
<SPAN ID="oSpan" onclick="fnChangeNode()">
Original Text
</SPAN>
Standards Information
This method is defined in
World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1
.
Applies To
See Also
createElement, About the W3C Document Object Model