好的,我知道有很多相似的科目,我已经阅读过了,但我仍然不知道如何解决这个问题。
我有一些像这样的简单形式和代码:
$('#landing-form').submit(function(event){
event.preventDefault();
$.ajax({
url: $(this).attr('action'),
type: $(this).attr('method'),
data: $(this).serialize(),
success: function(html) {
alert('ok');
}
});
return false;
});
我正在尝试发布我的数据但没有发生任何事情。 网址不是标准的php文件,但它与zoho集成。也许有一个线索。我真的不知道。