我试图让表单使用ajax方法发布帖子它被jquery行阻止:7845
xhr.send(options.hasContent&& options.data || null);
我该如何解决这个问题,不断省略'找不到发送404.pp 404
send.php在js文件夹里面这里是php file
的代码$('#contact').submit(function(e){
e.preventDefault()
if(!$('#contact').valid())
return false;
$('#submit').fadeOut(200,function(){
$('.sending').fadeIn(200);
});
$.ajax({
url: 'js/send.php',
type: 'post',
data: {name:$("input[name='name']").val(),
email:$("input[name='email']").val(),
comments:$("textarea[name='comments']").val(),
},
success: function(data) {
if(data==1)
{
$('.sending').html('Sent Successfully Thank You!');
$('#contact').fadeOut(500);
$("#contact input:not(#submit)").val('');
$('#contact textarea').val('');
txt_name = null;
}
else alert("error sending");
},
error:function(err)
{
alert("error sending");
}
}); });