data
是来自ajax请求的responseXML,返回<b>Test Text</b>
data
是XMLDocument对象
streamObj
是html页面的DOM节点。
streamObj.insertBefore(data,streamObj.firstChild);
没有插入xml片段。为什么呢?
答案 0 :(得分:0)
发现问题
从AJAX reponseXML返回的 data
是整个XMLDocument
。要获取其根节点,需要使用data.documentElement
http://www.w3schools.com/dom/prop_document_documentelement.asp