嗨伙计们,我正在用 jquery 进行一些测试,特别是 ajax 调用。
$('#jsonpbtn').click(function() {
$('#text').html('AJAX Call executing......');
$.ajax({
url : 'http://zip.elevenbasetwo.com/v2/US/10010',
type : 'GET',
success : function(data) {
console.log(data.city);
$('#jsonparea').html(data.city);
$('#text').html('Ajax Call ended');
},
error : function(xhr, status) {
alert(status);
},
});
});
json 响应是 {city: "New York City", state: "New York" ,country: "US"}
用google chrome 一切功能都很好,其实$('#jsonparea').html(data.city) 写的是纽约市的div 区。使用 firefox 我有一些问题,实际上没有写入 div 区域,调用 alert(data.city) 我有未定义的值。