上一個文章寫了ie操作xml,這次繼續(xù)火狐下javascript操作xml,火狐提供的xmldom比ie更加標準,火狐下操作xmldom實際上就是它的javascript實現(xiàn),火狐實現(xiàn)了dom level2,而微軟的ie僅支持dom level1.
1創(chuàng)建dom,dom標準指出,document.implementation對象有createdocument()方法.
var forasp_cnxmldom = document.mplementation.createdocument(,,null);
該方法的三個參數(shù)分別表示:文檔命名空間的url,文檔元素標簽名 ,和一個文檔類型對象(總是null,因為火狐滅幼對文檔類型對象的支持)
舉例
var forasp_cnxmldom = document.mplementation.createdocument(http://m.bwnwqq.cn,root,null);
這就常見了一個<a0 root xmlns:a0=http://m.bwnwqq.cn>的xml dom.
a0表示命名空間
2.載入xml,與微軟ie載入沒有l(wèi)oadxml()方法,只有l(wèi)oad()方法.load()方法與ie的load()方法相同.
如果同步載入xml
forasp_cnxmldom.async = false;
forasp_cnxmldom.load(http://m.bwnwqq.cn/rss.xml);
如果以不再如則必須使用onload事件處理函數(shù)來判斷是否已經(jīng)載入.
forasp_cnxmldom.onload = function(){alert(已經(jīng)載入);}
forasp_cnxmldom.load(http://m.bwnwqq.cn/rss.xml);
3獲取xml,火狐提供了xmlserializer對象.
var xmlobj = new xmlserializer();
var xmlcontent = xmlobj.serializetostring(forasp_cnxmldom,text/xml);
xmlserializer的唯一一個方法serializetostring(),參數(shù)是:序列化的節(jié)點和內(nèi)容類型(text/xml或者application/xml).為forasp_cnxmldom創(chuàng)建了xml代碼
(這里不是很理解,待研究.)
4.解析錯誤
在xml文件解析過程中發(fā)生錯誤,xmldom會自動創(chuàng)建文檔來解釋這個錯誤.
在此不多做研究.