我有一个基本的 AJAX 请求,如下所示:
$.ajax({
url: 'check_password.php',
type: 'post',
data: 'password='+password,
dataType: 'json',
success: function(json) {
if (json['success']) {
//Continue with default action
}else{
//Password is invalid, stop the script and return an error
preventDefault();
$(".error").show();
}
}