Javascript里使用Dom操作Xml

一.本笔记使用的Xml文件

二.IXMLDOMDocument/DOMDocument简介   

21 属性

211  parseError

212  async.

213  xml

214  text 3

 

                 215  attributes

216  nodeName

217  documentElement

218  nextSibling

219  childNodes

2110  firstChild

2111  lashChild

22 方法

221  loadXML

222  load

223  selectSingleNode

224  selectNodes

225  getElementsByTagName

226  hasChildNodes

三.例子


一.本笔记使用的Xml文件

 

<?xml version="1.0"?>

<book level="1">

 

 

  <Name>c++</Name>

 

 

  <Price>20</Price>

 

 

 <info>

<k>1</k>

  </info>

  <info>

    <k>2</k>

 

 

  </info>

 

 

</book>

 

 asp.net下实现代码:

string str = Server.MapPath("test1.xml");

 

 

XmlTextWriter xmlWriter = new XmlTextWriter(str,null);

 

 

xmlWriter.Formatting = System.Xml.Formatting.Indented;

 

 

xmlWriter.WriteStartDocument();

 

 

xmlWriter.WriteStartElement("book");

 

 

xmlWriter.WriteAttributeString("level","1");

 

 

xmlWriter.WriteElementString("Name","c++");

 

 xmlWriter.WriteElementString("Price","20");

 

 xmlWriter.WriteStartElement("info");

 

 

xmlWriter.WriteElementString("k","1");

 

 xmlWriter.WriteEndElement();

 

 

xmlWriter.WriteStartElement("info");

 

xmlWriter.WriteElementString("k","2");

 

 

xmlWriter.WriteEndElement();

 

 

xmlWriter.WriteEndElement();

 

 

xmlWriter.WriteEndDocument();

 

 xmlWriter.Close();

 

  

 

二.IXMLDOMDocument/DOMDocument简介

 

21 属性

 

211  parseError

 

Returns an IXMLDOMParseError object that contains information about the last parsing error

返回解析错误时的一个对象。

重要的有parseError.errorCode,parseError.reason

如果load时路径不对,会返回“系统未找到指定的对象”的错误

212  async

 

Specifies whether asynchronous download is permitted

是否允许异步下载,布尔值

 

 

213  xml

 

Contains the XML representation of the node and all its descendants. Read-only.

该点及下面派生的所有点的全部信息,只读如果要求book点的xml,返回“<book level="1"><Name>c++</Name><Price>20</Price><info><k>1</k></info><info><k>2</k></info></book>”,如果Namexml,返回“<Name>c++</Name>

214  text

 

Represents the text content of the node or the concatenated text representing the node and its descendants. Read/write

该点及下面派生的所有点的全部节点值,可读可写

<price>20</price>

text20

"Name"节点的text"c++"

215  attributes

 

Contains the list of attributes for this node

返回属性的集合。

216  nodeName

 

Returns the qualified name for attribute, document type, element, entity, or notation nodes. Returns a fixed string for all

other node types. Read-only

该节点名称

"Name"节点的nodeName"Name","book"节点的nodeName"book"

217  documentElement

 

Contains the root element of the document

xml的根节点

上面的xml的根节点为"book"

218  nextSibling

 

Contains the next sibling of the node in the parent's child list. Read-only.

下一个兄弟节点,只读

219  childNodes

 

Contains a node list containing the child nodes

所有的子节点。

2110  firstChild

 

Contains the first child of the node

第一个子节点

2111  lastChild

 

Returns the last child node

最后一个子节点

 

 

22 方法

 

221  loadXML

 

Loads an XML document using the supplied string

222  load

 

Loads an XML document from the specified locati

参数的路径为服务器端的,是相对路径

223  selectSingleNode

 

Applies the specified pattern-matching operation to this node's context and returns the first matching node

返回第一个匹配的项

224  selectNodes

 

Applies the specified pattern-matching operation to this node's context and returns the list of matching nodes as IXMLDOMNodeList

符合条件的所有项。

225  getElementsByTagName

 

Returns a collection of elements that have the specified name

返回与元素名匹配的一个node的集合

226  hasChildNodes

 

Provides a fast way to determine whether a node has children

判断是否含有子节点

返回值为bool

 

 

三.例子

 

var xmlDoc = new ActiveXObject("Msxml2.DOMDocument.3.0");

xmlDoc.async = false;

xmlDoc.load("test\\test1.xml");

if (xmlDoc.parseError.errorCode!=0)

{

var error = xmlDoc.parseError;

  alert(error.reason)

return;

}

var root = xmlDoc.documentElement;   //根节点

Form1.test1.value = root.xml;

/*结果如下:

<book level="1"><Name>c++</Name><Price>20</Price><info><k>1</k></info><info><k>2</k></info></book>*/

Form1.test1.value = root.nodeName;  //结果为"book"

var att = root.attributes;  //得到该点下所有属性的集合

var str = "";

for (var i=0; i<att.length; i++)

{

str += att.item(i).nodeName+":"+att.item(i).text;

}

Form1.test1.value = str;  //只有一个属性,所以结果为“level1

var fNode;

var lNode;

var nextSibling;

fNode = root.firstChild;   //第一个子节点Name

lNode = root.lastChild;    //最后一个子节点 info

nextSibling = fNode.nextSibling;  //第一个子节点Name的后一个兄弟节点,即Price

str = fNode.nodeName + ":" + fNode.text;  //结果:"Name:c++"

str = lNode.nodeName + ":" + lNode.text;  //结果为:"info:2"

str = nextSibling.nodeName + ":"  + nextSibling.text;  //结果为:"Price:20"

var nodeList;

str = "";

nodeList = xmlDoc.selectNodes("//info");  //查找元素名为"info"的节点

for (var j=0; j<nodeList.length; j++)  //有两个info节点

{

var infoNode = nodeList.item(j);

var cldNodes = infoNode.childNodes;  //info节点的子节点集

for (var k=0; k<cldNodes.length; k++)

{

       str += cldNodes.item(k).nodeName + ":" + cldNodes.item(k).text + " ";

}

//结果“k:1 k:2

}

str = "";

var sNode;

sNode = xmlDoc.selectSingleNode("//info"); //找到第一个和"info"匹配的

var scldNodes = sNode.childNodes;  //info节点的子节点集

for (var t=0; t<scldNodes.length; t++)

{

str += scldNodes.item(t).nodeName + ":" + scldNodes.item(t).text + " ";

}

//结果“k:1

Form1.test1.value = str;

转载于:https://www.cnblogs.com/goody9807/archive/2006/06/12/424031.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/497300.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Replace Type Code with Class(以类取代类型码)

类之中有一个数值类型码&#xff0c;但它不影响类的行为 public class Person {public static final int O 0;public static final int A 1;public static final int B 2;public static final int AB 3;private int bloodGroup;public void setBloodGroup(int arg) {this.…

AI 识别抑郁症正确率高达八成,但AI+精神健康还有很长的路要走

来源&#xff1a; 智能相对论&#xff08;aixdlun&#xff09;近年来&#xff0c;“抑郁症”一词越来越多的被人们提起&#xff0c;不少名人如白岩松、崔永元等都曾表示陷入过抑郁症的痛苦&#xff0c;而抑郁症患者不堪病痛而自杀的新闻也屡见不鲜。生命的“陨落“&#xff0c;…

关于服务器虚化的优势,vmware虚化优势.docx

vmware虚化优势VMWARE服务器虚拟化介绍利用虚拟化基础架构技术&#xff0c;可以不断整合工作负载&#xff0c;从而充分利用服务器并降低运营成本。该基础架构技术不但使系统管理员能够管理更多的服务器&#xff0c;而且在置备新的软件服务和维护现有软件服务时&#xff0c;具有…

在程序中生成PDF

这几天一直在关注这方面的事情:在Delphi中将扫描&#xff0c;排版&#xff0c;生成pdf文档 并压缩入库&#xff0c;提取文本进行全文检索等一系列对文本的控制扫描部分&#xff1a;使用delphi TWain组件可以方便的得到Image再通过奥威目前的文本控制技术在RichView里生成相关文…

上万家物联网公司会被“政策死”吗

来源&#xff1a;财经十一人概要&#xff1a;有时候&#xff0c;打败你的可能不是新技术&#xff0c;只是一份文件。这次政策风波涉及两个问题&#xff0c;一是哪种物联网技术路线更合适&#xff0c;二是通过行政手段干预市场竞争是否合理。“有时候&#xff0c;打败你的可能不…

Replace Type Code with Subclasses(以子类取代类型码)

有一个不可变的类型码&#xff0c;它会影响类的行为 public class Employee {static final int ENGINNER 0;static final int SALESMAN 1;static final int MANAGER 2;private int type;public Employee(int type) {this.type type;}public int getType() {return type;} …

.net 中使用socket (c#)

前几天在网上看到关于使用socket 编写聊天程序的一个例子&#xff0c;学习了一下&#xff0c;网上的例子是VB.NET的&#xff0c;自己改写成了C#的 大同小异&#xff0c;只作为记录 &#xff1a; 发送端usingSystem;usingSystem.Drawing;usingSystem.Collections;usingSystem.Co…

Replace Type Code with State/Strategy(以State/Strategy取代类型码)

有一个类型码&#xff0c;它会影响类的行为&#xff0c;但你无法通过继承消除它 public class Employee {static final int ENGINNER 0;static final int SALESMAN 1;static final int MANAGER 2;private int type;// 月薪.private int montylySalary;// 佣金.private int c…

MSRA副院长周明博士:四大研究领域揭示自然语言技术的奥秘

来源&#xff1a;AI科技评论概要&#xff1a;自然语言理解处在认知智能最核心的地位。比尔盖茨曾说过&#xff0c;「语言理解是人工智能皇冠上的明珠」&#xff0c;沈向洋博士也说过「懂语言者得天下」。自然语言理解处在认知智能最核心的地位。它的进步会引导知识图谱的进步&a…

net中的调试javascript脚本

怎样对.net中的javascript脚本进行调试&#xff1f;第一步&#xff1a;在IE的“Internet设置”中选择“高级”——“安全”——“启用集成windows身份验证”(这一步很重要!!!)第二步&#xff1a;同样在“Internet设置”中把“禁止脚本调试”的勾去掉第三步&#xff1a;用调试模…

ajax将响应结果显示到iframe,JavaScript:iframe / Ajax / JSON

iframe在Ajax流行之前大量使用&#xff1a;iframe中的src属性指定的就是一个独立的页面url地址&#xff0c;iframe中呈现的就是这个页面的内容。通过改变src的值&#xff0c;我们就可以轻松的改变iframe中的内容(类似的&#xff0c;刷新验证码也是同样的手段)&#xff1a;docum…

Decompose Conditional(分解条件表达式)

有一个复杂的 if-else 语句 if (date.before(SUMMER_START) || date.after(SUMMER_END)) {charge quantity * winterRate winterServiceCharge; } else {charge quantity * summerRate; } 重构&#xff1a; 从if-else 中分别提炼出独立函数 if (notSummer(date)) {charge…

2018 AI 产品趋势:喧嚣的追风者和静默的收割人

来源&#xff1a;36氪毫无疑问&#xff0c;在消费科技品领域&#xff0c;AI产品有泡沫。故事要从2014年说起。那一年底&#xff0c;亚马逊低调发布了智能音箱Echo&#xff0c;苹果发布了第一代Apple Watch智能手表。比起AI浪潮&#xff0c;那个时候大家谈论更多&#xff0c;是智…

基于Ajax的应用程序架构汇总(三)

3 服务器端&#xff1a;多种语言 3.1 跨平台异步的接口工具箱(5月2005年) CPAINT&#xff1a;http://cpaint.sourceforge.net/&#xff0c;是一真正的支持PHP和ASP/Vbscript的Ajax实现和JSRS(JavaScript远程脚本)实现。CPAINT提供给你需求的代码在后台实现AJAX和JSRS&#xff0…

ftp服务器需要什么系统,ftp服务器需要什么系统

ftp服务器需要什么系统 内容精选换一换单独购买的云硬盘为数据盘&#xff0c;可以在云硬盘列表中看到磁盘属性为“数据盘”&#xff0c;磁盘状态为“可用”。此时需要将该数据盘挂载给云服务器使用。系统盘必须随云服务器一同购买&#xff0c;并且会自动挂载&#xff0c;可以在…

3D 鼠标跟随脚本详解

请大家先看右边的动画演示。这个动画就是由 jimbob 制作的&#xff0c;您可以到这里来下载这个动画的原始文件。下面请看他的详细解释&#xff1a; If Frame Is Loaded ("end")Go to and Play ("start")End Frame Loaded initalise:Comment: Comment: 初始…

重磅 | MIT启动IQ计划:研究人类智能,让全世界的机构共同合作

作者&#xff1a;思颖概要&#xff1a;当地时间 2 月 1 日&#xff0c;MIT 宣布启动 MIT Intelligence Quest&#xff08;智能探索&#xff09;计划&#xff0c;该项计划旨在助力人类智能的基础研究&#xff0c;推动能造福于社会的技术工具的发展。据悉&#xff0c;该项声明由 …

risc系统服务器,精简的高端 解析四大RISC服务器处理器

也许您很难相信&#xff0c;作为我们今天仍在广泛使用的诸如“扣肉”之类的最新双核乃至是CPU(Center Prosessing Unit中央处理器)&#xff0c;都是基于始创在上世纪60年代的CISC指令集&#xff0c;距今已有四十多年了。CISC是英文“Complex Instruction Set Computer”的缩写&…

Consolidate Conditional Expression(合并条件表达式)

有一系列条件测试&#xff0c;都得到相同结果 private double disabilityAmount() {if (seniority < 2) return 0;if (monthsDisabled > 2) return 0;if (isPartTime) return 0;// ... } 重构&#xff1a;将这些条件测试合并为一个条件表达式&#xff0c;并提炼为一个独…

梅露可物语虚拟服务器,【图片】【萌新】主界面的使用方法(零基础版)【梅露可物语日服吧】_百度贴吧...

该楼层疑似违规已被系统折叠 隐藏此楼查看此楼那下面主要讲讲梅露可的货币们&#xff1a;1、 钻石&#xff1a;钻石的主要用途有三个。一、抽抽抽&#xff01;二、碎了这个钻来回复你的ap。三、战斗时候被人打败了有时可以用钻石复活。不过第三个基本是都不用的&#xff0c;因为…