我通过$ .ajax()调用Web服务。 onsuccess我得到一个xml文档,现在问题是我需要查看检索到的xmlDocument的内容..
有没有这样做.. ??
答案 0 :(得分:2)
按原样将它放到textarea字段
$("#textareaID").val(xmlstr);
或使用html-encoding显示:
$("#someDivID").text(xmlstr); // jQuery text() function performs html-encoding automatically
简单演示:http://jsfiddle.net/wKhnF/1/
注意dataType: "text"
,需要将响应内容作为文本处理,而不是XML对象。
答案 1 :(得分:1)