当我尝试通过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;
}
}
});
});