$('#add-asset-form').submit(function(){
//if (validate_asset_form()) {
$.ajax({
type: 'POST',
url: 'wp-content/themes/tvmarketing/assetform/ajax-req.php',
cache: false,
data: $('#add-asset-form').serialize(),
error: function(){ alert('error'); },
success: function(data){
alert('sucessful');
$("#ajax-res").html(data);
$('#edit-id').val('');
$('#add-asset-form')[0].reset();
}
});
//}
return false;
});
为什么这在IE6中不起作用?它在FF中工作正常。 当我在IE6中运行时,我收到“错误”警报。有人可以指导我朝正确的方向发展。
由于
答案 0 :(得分:1)
更改
error: function(){ alert('error'); },
到
error: function(request, textStatus, errorThrown){
alert(textStatus);
alert(errorThrown);
alert('test');
alert(request.status);
alert(request.responseText);
},
看看你得到了什么