任何人都可以告诉我下面给出的代码有什么问题。我正在尝试使用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
答案 0 :(得分:6)
您正在混合$.get
和$.ajax
请改用:
$.ajax({
url: "http://echo.jsontest.com/key/value/one/two",
dataType: "json"
}).success(function(data){
$('#data').append(JSON.stringify(data));
});