我加载了一个xml
$.ajax({
url: '../rest/',
dataType: "xml",
success: showXML
});
function showXML(xml) {
$("#output").text((xml));
}
但他没有在我的输出div中显示xml
他表示: [对象文件] 需要做什么才能简单地显示xml?
答案 0 :(得分:1)
因为您将dataType
设置为xml
,jquery会自动为您提供成功回调的数据参数的对象。
尝试使用此签名:
function showXML(xml, textStatus, jqXHR)
和
$("#output").text(jqXHR.responseText);
答案 1 :(得分:0)
将dataType
更改为"html"
或"text"
。如果这不起作用,您可能需要按照帖子的评论中的说法进行操作。