$.ajax({
url: 'index.php?route=account/edit',
type: 'post',
data: $('#account_edit input[type=\'text\'], #account_edit input[type=\'password\'],**#account_edit input[type=\'file\']**,#account_edit input[type=\'radio\']:checked'),
dataType: 'json',
beforeSend: function() {
$('#button-update').attr('disabled', true);
$('#button-update').after('<span class="wait"> <img src="catalog/view/theme/default/image/loading.gif" alt="" /></span>');
},
complete: function() {
$('#button-update').attr('disabled', false);
$('.wait').remove();
},
success: function(json) {
$('.warning').remove();
$('.error').remove();
//alert(json['error']['firstname']);
if (json['redirect']) {
//location = json['redirect'];
}
}
答案 0 :(得分:0)
我使用jQuery form plugin以类似ajax的方式提交文件,特别是.ajaxSubmit()方法。
答案 1 :(得分:0)
$ .ajax()不支持文件上传。最好你应该尝试一些像ajaxForm这样的插件来上传文件。