如何在jsfiddle中加载和使用XML

时间:2011-12-01 20:00:56

标签: jquery xml ajax

我使用以下代码在jsfiddle.net中使用xml加载

  $.ajax({
   type: "GET",
   url: "/echo/note.xml",
   dataType: "xml",
   success: function(xml) {
        alert('Hi');       
   }
  });

但它不起作用..请看看这个并纠正我的错误..
here是小提琴

2 个答案:

答案 0 :(得分:3)

查看工作fiddledocs

$(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');
    }
});