XMLDOM对象方法手册

 

XMLDOM的简单方法记录

  //创建xml
  doc =  new ActiveXObject("Microsoft.XMLDOM");
  var p = doc.createProcessingInstruction("xml","version='1.0'  encoding='GB2312'");
  //添加文件头
  doc.appendChild(p);

u      读取节点的属性值

node.attributes.getNamedItem("text").nodeValue

u      节点添加属性

var r2 = doc.createAttribute("linesum");

r2.value = “adfadsf”;

rowdata.setAttributeNode(r1);

你可能感兴趣的:(xml,Microsoft)