malsup文件上传页面在IE中不作为ajax格式加载

时间:2013-05-07 11:56:37

标签: jquery ajax file-upload jquery-plugins jquery-forms-plugin

当我尝试通过ajaxsubmit函数或ajax表单函数上传图像时,表单在Firefox,Chrome等中提交为ajax但是当在IE中提交相同时,值以html格式发送而不是以ajax模式发送

$(document).ready(function () {
    $('#add_participant2').on('submit', function (e) {
        {
            $('#loadingmessage').show();
            e.preventDefault();
            flag = 2
            //alert('test');
            if (flag == 1) {
                $('#loadingmessage').hide();
                return false;
            } else {
                $(this).ajaxSubmit({
                    target: $(this).attr('action')
                });
                $('#loadingmessage').hide();
                return false;
            }
        }
    });
});

0 个答案:

没有答案