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