这是我整个脚本的一部分(整个脚本有点冗长,所以这里是@fiddle)。它工作正常,但突然间它已停止工作,我在控制台中收到错误Failed to process ajax !
$.ajax({
type: 'post',
url: 'test2.php',
dataType: 'json',
data: {
txt: txtbox,
hidden: hiddenTxt
},
cache: false,
success: function(returndata) {
$('#first').html(returndata[0]);
$('#second').html(returndata[1]);
$('#third').html(returndata[2]);
$('#fourth').html('<img src="' + returndata[3] + '" height="125" width="125">')
console.log(returndata);
$("#walkaway").show();
$("#submitamt").show();
},
error: function() {
console.error('Failed to process ajax !');
}
});
任何人都可以告诉我这是什么问题。