js IE,Mozilla,Firefox,Opera浏览器 xml方法

本文介绍了一个用于处理XML文档的方法,包括使用DOMParser加载XML字符串、通过XPath查询节点以及获取节点值的功能。该方法兼容不同浏览器环境,并提供了XPath查询的支持。
 
function GetNodeValue(obj)
{
var str = "";
if(window.ActiveXObject)    //IE
{
  str = obj.text;
}
else //Mozilla
{
  try
  {
   str = obj.childNodes[0].nodeValue;
  }
  catch(ex)
  {
   str = "";
  }
}
return str;
}
if(document.implementation && document.implementation.createDocument)
{
XMLDocument.prototype.loadXML = function(xmlString)
{
  var childNodes = this.childNodes;
  for (var i = childNodes.length - 1; i >= 0; i--)
   this.removeChild(childNodes[i]);
  var dp = new DOMParser();
  var newDOM = dp.parseFromString(xmlString, "text/xml");
  var newElt = this.importNode(newDOM.documentElement, true);
  this.appendChild(newElt);
};
// check for XPath implementation
if( document.implementation.hasFeature("XPath", "3.0") )
{
    // prototying the XMLDocument
    XMLDocument.prototype.selectNodes = function(cXPathString, xNode)
    {
    
    if( !xNode ) { xNode = this; }
    var oNSResolver = this.createNSResolver(this.documentElement)
    var aItems = this.evaluate(cXPathString, xNode, oNSResolver,
        XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null)
    var aResult = [];
    for( var i = 0; i < aItems.snapshotLength; i++)
    {
    aResult[i] =  aItems.snapshotItem(i);
    }
    return aResult;
    }
    // prototying the Element
    Element.prototype.selectNodes = function(cXPathString)
    {
    if(this.ownerDocument.selectNodes)
    {
    return this.ownerDocument.selectNodes(cXPathString, this);
    }
    else{throw "For XML Elements Only";}
    }
}
  // prototying the XMLDocument
    XMLDocument.prototype.selectSingleNode = function(cXPathString, xNode)
    {
    if( !xNode ) { xNode = this; }
    var xItems = this.selectNodes(cXPathString, xNode);
    if( xItems.length > 0 )
    {
    return xItems[0];
    }
    else
    {
    return null;
    }
    }
    
    // prototying the Element
    Element.prototype.selectSingleNode = function(cXPathString)
    {    
    if(this.ownerDocument.selectSingleNode)
    {
    return this.ownerDocument.selectSingleNode(cXPathString, this);
    }
    else{throw "For XML Elements Only";}
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值