我已經寫了下面的代碼使用jQuery進行Ajax調用:阿賈克斯jQuery的不工作
$.ajax({
url: 'verify.php',
type: 'POST',
data: {
'mobile': 'update'
}
success: function(response) {
if (response == 'success') {
$('#popupscreen').fadeOut('slow');
}
else {
$("#error").html("<p>" + Registration failed! Please try again. + "</p>").show();
}
}
});
我收到錯誤未捕獲的SyntaxError:意外的標識符合成功:函數(響應){ 爲什麼我得到這個錯誤?
'$(「#error」)。html(「
註冊失敗!請重試
「).show();' – undefined如果您的問題中的初始代碼格式與您在IDE中的格式相同,那麼您應該考慮學習一些代碼格式規則,它會幫助您(和其他人)閱讀你自己的代碼很多 –