我使用以下代码在jsfiddle.net中使用xml加载
$.ajax({
type: "GET",
url: "/echo/note.xml",
dataType: "xml",
success: function(xml) {
alert('Hi');
}
});
但它不起作用..请看看这个并纠正我的错误..
here是小提琴
答案 0 :(得分:3)
$(function() {
$.ajax({
type: "POST",
url: "/echo/xml/",
dataType: "xml",
data: {
xml: "<the>xml</the>"
},
success: function(xml) {
console.log(xml);
}
});
});
答案 1 :(得分:2)
您必须指定echo请求的内容。请参阅文档:
http://doc.jsfiddle.net/use/echo.html
以下是@Rocket的示例代码。
$.ajax({
type: "POST",
url: "/echo/xml/",
data: {
xml: '<true/>'
},
dataType: "xml",
success: function(xml) {
alert('Hi');
}
});