2010-01-26 22:12

[JavaScript] 解析 XML 字串(IE / FF)

  1. String.prototype.toXmlDom=function(){ 
  2.    var dom=null; 
  3.    if (window.DOMParser){ 
  4.        dom = (new DOMParser()).parseFromString(this, "text/xml"); 
  5.    }else{ 
  6.        dom=new ActiveXObject("microsoft.XMLDOM"); 
  7.        dom.async=false; 
  8.        dom.loadXML(this); 
  9.    }  
  10.    return dom; 
  11. } 
  12.  
  13. xmlDom = xmlStr.toXmlDom(); 


我做了一些測試,在 Firefox 中就像一般的 DOM Element 一樣操作就可以了。

但在 IE 中所解析出來的 XML 是以 Object 的方式處理,只能使用 IE 所提供的方法操作,而且有些 tag node 會無法取得,如 <date>。

參考來源:
javascript读取xml(firefox与ie兼容)
XML DOM Parser

0 回應: