当前位置: 首页 > 网络学院 > XML相关教程 > XML DOM > createTextNode() 方法
The createTextNode() method creates a text node.
createTextNode()方法的作用是:创建一个文本节点。
This method returns a Text object.
该方法将返回一个文本节点。
createTextNode(text) |
Parameter 参数 | Description 描述 |
---|---|
text | A string that specifies the text for the node 指定一个用于指明节点文本的字符串 |
In all examples, we will use the XML file books.xml, and the JavaScript function loadXMLDoc().
在所有案例中,我们将使用“book.xml”文件以及JavaScript 函数“loadXMLDoc()”。
The following code fragment adds an element node with a containing text node to each <book> element:
下面的代码片断将一个元素节点以及它所包含的文本节点添加到每个<book>元素中:
xmlDoc=loadXMLDoc("books.xml"); var x=xmlDoc.getElementsByTagName('book'); var newel,newtext for (i=0;i<x.length;i++) { newel=xmlDoc.createElement('edition'); newtext=xmlDoc.createTextNode('First'); newel.appendChild(newtext); x[i].appendChild(newel); } |
createElement() and createTextNode() - Create an element node and a text node