我正在寻找一个简单的示例和/或说明如何error
使用.ajax
.
这个问题(jQuery ajax 错误函数)指向我不理解的这个 jQuery 文档( http://api.jquery.com/jQuery.ajax/ )。
我有以下代码不起作用,我不知道为什么。我希望错误参数会有所帮助:
jQuery:
<script>
// wait for the DOM to be loaded
$(document).ready(function() {
// bind 'myForm' and provide a simple callback function
$("#myForm").submit(function(){
var user_input = $("#signup_id_email").val();
$.ajax
({
type: "POST",
url: "ajax_test.php",
dataType: 'json',
data: {email: user_input},
**error: ""**
})
.done(function(r)
{
$("#answer_id").append(r.email);
});
});
});
</script>
PHP (ajax_text.php)
<?php
echo json_encode($_POST);
?>