最近使用了Javascript操作XML,积累了一些使用方法的语句,基本上能满足平时的使用需要了。
但怕忘了,就记在这儿吧!
//创建一个DOM对象
var doc = new ActiveXObject(("Microsoft.XMLDOM");
//加载xml文件
doc.load("xxx.xml");
//加载xml字符集
doc.loadXML("<xml>");
//创建文件头
var p = doc.createProcessingInstruction("xml","version='1.0' encoding='gb2312'");
//添加节点
doc.appendChild(p);
//得到根接点
var root = doc.documentElement;
//两种方式创建节点
var root = doc.createElement("node1");
var root = doc.createNode(1,"node1","");
//节点文本
node.text = " this is a test";
//创建属性
var r = doc.createAttribute("id");
r.value="test";
//添加属性
node.setAttributeNode(r1);
//修改属性值
node.setAttribute("attr", "this is test")
//得到节点属性
node.getAttribute("attr")
//删除属性
n.removeAttribute("class");
//添加文本节点
n.appendChild(doc.createTextNode("this is a text node."));
//添加注释
n.appendChild(doc.createComment("this is a comment\n"));
//复制节点
var m = n.cloneNode(true);
//删除节点
root.removeChild(node);
//创建数据段
var c = doc.createCDATASection("this is a cdata");
c.text = "hi,cdata";
//查找节点两种方法
var a = doc.getElementsByTagName("ttyp");
var a = doc.selectNodes("//root/node1/node2"); //注:“//root/node1/node2”是XPath的写法,具体的使用请参考关于XPath的资料
var a = doc.selectSingleNode("//root/node1/node2");
//显示改节点的xml文本
a[i].xml
//节点的属性集合
var attrs = node.attributes;
//查看属性的名字和值
node.attributes[i].name
node.attributes[i].value
//XML保存(需要在服务端,客户端用FSO)(注:这个我未使用过,姑且先写在这。)
//doc.save();
//得到根接点XML
var root = node.ownerDocument
(注:改页面会不断更新,欢迎常来 ^_^)