0

我出于某种原因使用此 ajax 方法,提交后从服务器返回的状态代码被忽略..

这是我在响应中从服务器收到的内容

HTTP/1.1 200 OK
Content-Type: text/html; charset=utf-8
Content-Length: 4241

方法:

function submitForm() {
    $.ajax({
        url : jQuery("#contact-form").attr("action"),
        type : jQuery("#contact-form").attr("method"),
        data : jQuery("#contact-form").serialize(),
        statusCode : {
            200 : (function() {
                alert("yyyyyyyyaaaaaaaaaaaaa");
            }),
    400 : (function() {
                alert("eeeerrrrrrrrrr");
            })
        }
    });
}
4

0 回答 0