JavaScript Reference/Javascript Methods/createTextNode — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 11:22, 26 мая 2010
"createTextNode()" Example
<source lang="javascript">
<html> <body> <script language="JavaScript"> function function11() {
var myNode = document.createTextNode("New Text Node"); document.body.appendChild(myNode);
} </script> <button onclick="function11();">Create text node</button> </body> </html>
</source>
"createTextNode()" is applied to
<source lang="javascript">
+----------------+--------------------------------------------------------------+ | Applied_To |document | +----------------+--------------------------------------------------------------+
</source>
"createTextNode()" Syntax, Parameters and Note
<source lang="javascript">
Note: Creates a new text node.
Syntax:
document.createTextNode(param1) Parameters:
param1 Optional; the nodeValue property value. </source>