建站学院(LieHuo.Net)xml文档 使用js脚本添加、修改、删除xml节点,已知有一个XML文件(bookstore.xml)如下:
以下为引用的内容: <?xml version="1.0" encoding="gb2312"?> <bookstore> <book genre="fantasy" ISBN="2-3631-4"> <title>Oberons Legacy</title> <author>Corets, Eva</author> <price>5.95</price> </book> </bookstore> |
1、往<bookstore>节点中插入一个<book>节点:
以下为引用的内容: XmlDocument xmlDoc=new XmlDocument(); xmlDoc.Load("bookstore.xml"); XmlNode root=xmlDoc.SelectSingleNode("bookstore");//查找<bookstore> XmlElement xe1=xmlDoc.CreateElement("book");//创建一个<book>节点 xe1.SetAttribute("genre","作者");//设置该节点genre属性 xe1.SetAttribute("ISBN","2-3631-4");//设置该节点ISBN属性 XmlElement xesub1=xmlDoc.CreateElement("title"); root.AppendChild(xe1);//添加到<bookstore>节点中 |
以下为引用的内容: <?xml version="1.0" encoding="gb2312"?> <bookstore> <book genre="fantasy" ISBN="2-3631-4"> <title>Oberons Legacy</title> <author>Corets, Eva</author> <price>5.95</price> </book> <book genre="作者" ISBN="2-3631-4"> <title>CS从入门到精通</title> <author>作者</author> <price>58.3</price> </book> </bookstore> |
2、修改节点:将genre属性值为“作者“的节点的genre值改为“update作者”,将该节点的子节点<author>的文本修改为“亚胜”。
以下为引用的内容: XmlNodeList nodeList=xmlDoc.SelectSingleNode("bookstore").ChildNodes;//获取bookstore节点的所有子节点 foreach(XmlNode xn in nodeList)//遍历所有子节点 { XmlElement xe=(XmlElement)xn;//将子节点类型转换为XmlElement类型 if(xe.GetAttribute("genre")=="作者")//如果genre属性值为“作者” { xe.SetAttribute("genre","update作者");//则修改该属性为“update作者” XmlNodeList nls=xe.ChildNodes;//继续获取xe子节点的所有子节点 xmlDoc.Save("bookstore.xml");//保存。 |
以下为引用的内容: <?xml version="1.0" encoding="gb2312"?> <bookstore> <book genre="fantasy" ISBN="2-3631-4"> <title>Oberons Legacy</title> <author>Corets, Eva</author> <price>5.95</price> </book> <book genre="update作者" ISBN="2-3631-4"> <title>CSS从入门到精通</title> <author>亚胜</author> <price>58.3</price> </book> </bookstore> |