举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > XML DOM replaceChild() 方法——Element 对象

XML DOM replaceChild() 方法——Element 对象

2023-05-28 08:18 XMLDOM教程

 XML DOM replaceChild() 方法——Element 对象

XML DOM replaceChild() 方法


Element 对象参考手册 Element 对象

定义和用法

replaceChild() 方法替换子节点为其他节点。

如果成功该函数则返回被替换的节点,如果失败则返回 NULL。

语法

elementNode.replaceChild(new_node,old_node)

参数 描述
new_node 必需。规定新节点。
old_node 必需。规定要替换的子节点。


实例

下面的代码片段使用 loadXMLDoc() 把 "books.xml" 载入 xmlDoc 中,并替换第一个 <book> 元素:

实例

xmlDoc=loadXMLDoc("books.xml");

x=xmlDoc.documentElement;

//create a book element
newNode=xmlDoc.createElement("book");

y=xmlDoc.getElementsByTagName("book")[0]
//replace the first book node with the new node
x.replaceChild(newNode,y);


Element 对象参考手册 Element 对象
阅读全文
以上是编程学为你收集整理的 XML DOM replaceChild() 方法——Element 对象全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部