使用jquery ajax调用将json数据加载到div

时间:2013-08-31 12:14:29

标签: ajax jquery

任何人都可以告诉我下面给出的代码有什么问题。我正在尝试使用json调用在div中加载数据。

function getData() {
    $.ajax({
        url: "http://echo.jsontest.com/key/value/one/two",
        type: "get",
        dataType: "JSON"
    }, function(data){
        $('#99').append(JSON.stringify(data));
    });
    return false;
}

如果有人可以对$.ajax, $.get, $.post and $.getJSON

有所了解,那就太棒了

1 个答案:

答案 0 :(得分:6)

您正在混合$.get$.ajax

请改用:

$.ajax({
    url: "http://echo.jsontest.com/key/value/one/two",
    dataType: "json"
}).success(function(data){
    $('#data').append(JSON.stringify(data));
});

演示:http://jsfiddle.net/j3vsg/