我编写了下面的代码来使用 jquery 进行 ajax 调用:
$.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();
}
}
});
我收到错误Uncaught SyntaxError: Unexpected identifier in line success : function(response){ 为什么我收到此错误?