Ajax使用txtstatus错误获取超时

时间:2018-12-13 05:41:56

标签: javascript jquery ajax forms

$.ajax({
    url: '/api/career',
    data: formData,
    contentType: false,
    processData: false,
    dataType: 'json',
    cache: false,
    async: false,
    type: 'POST',
    success: function (data) {
        $("#careerloader").hide();
        $("#submitcareer").show();
        $(".ajax-file-upload-container").html("");
        $('#career-form form').each (function(){
            this.reset();
        });
        $(poupContainer).hide();
        $(submitButton).prop('disabled', false);
        $('#thankyou').show().find('.message').html('Thank you for applying to Corindus. Your application has been successfully submitted.');
        $(".file_path").val("");
        $(".filename").val("");
        $('#files.uname').val("")
        // $(".selected-file-name").html("");
        $(".selected-file-name").show();
        $(".selected-file-name").css("margin-top","-20px");
    }, complete: function () {
        $('.colorHolder label').each (function(index,item){
            $(item).css("display","block");
        })
        $("#careerloader").hide();
        $("#submitcareer").show();
        $(submitButton).prop('disabled', false);
    },
    error : function (xmlhttprequest, textstatus, message){
        $('.non-popup-career-form .error span').text(textstatus);
        $('.non-popup-career-form .error').show();
        return false;
    }
})

我正在使用ajax提交表单。它适用于10.0版以上的iPhone和iPad以外的所有设备和浏览器。 我已经在浏览器模拟器中测试过,它也可以工作。我不知道为什么我不提交高于10.0版本的iPhone和iPad。

0 个答案:

没有答案