当前位置: 首页 > 网络学院 > XML相关教程 > XML DOM > substringData() 方法
The substringData() method gets data from the text node.
substringData() 方法将获取文本节点中的数据。
substringData(start,length) |
Parameter 参数 | Description 描述 |
---|---|
start | Required. Specifies where to begin extracting characters. Start value starts at zero 必要参数。指定提取字符的起始位置。默认起始位置为0 |
length | Required. Specifies how many characters to extract 必要参数。指定提取字符的数量 |
In all examples, we will use the XML file books.xml, and the JavaScript function loadXMLDoc().
在所有案例中,我们将使用“books.xml”文件以及JavaScript 函数“loadXMLDoc()”。
The following code fragment gets a fragment from the text node of the first <title> element "books.xml", and then outputs it:
下面的代码片断将获取来自于“books.xml”文件中第一个<title>元素中的文本节点,并输出它:
xmlDoc=loadXMLDoc("books.xml"); var x=xmlDoc.getElementsByTagName("title")[0].childNodes[0]; y=x.substringData(9,7); document.write(x.nodeValue); document.write("<br />"); document.write(y); |
Output:
输出结果:
Everyday Italian Italian |
substringData() - insert a string to a text node
substringData() - 将一个字符穿插入一个文本节点中