我无法从我的 ajax 调用中检索错误消息以确定错误是什么。
我见过这个问题:Jquery Ajax 中的 errorThrown 返回未定义?
我复制了那个错误调用,但仍然没有结果。
grab_songs = function() {
$.ajax({
type:'POST',
url: 'http://tangoalphatango.com/songs.php',
succss: function(data) {
$('#result').html('success');
},
error: function(x, textStatus, errorThrown){
alert(errorThrown);
}
});
}
$('.song-title').click(grab_songs);
为什么ajax不会给我一个错误信息?