$.ajax()这个是jQuery 的底层 AJAX 实现。简单易用的高层实现见 $.get,$.post 等。
这里有几个Ajax事件参数:beforeSend ,success ,complete ,error 。
$.ajax({
url: 'consignAction.jsp',
type: 'POST',
data:{'ids':ids,'act
ion':'del'},
dataType: 'text',
这里有几个Ajax事件参数:beforeSend ,success ,complete ,error 。
$.ajax({
url: 'consignAction.jsp',
type: 'POST',
da
dataType: 'text',
async: false,//同步
timeout: 5000,
error: function(){
alert('操作错误,请与系统管理员联系!');
},
success: function(data){
if($.trim(data) != 'true'){
alert("解除委托成功");
}
}
});
error: function(){
alert('操作错误,请与系统管理员联系!');
},
success: function(da
if($.trim(da
alert("解除委托成功");
}
}
});
$.post('.url?action=getTransferInTicketDetail',
{ from_no: rowData.FROM_NO,to_no: rowData.TO_NO },function (data) {
},'json');
$.get('url?action=getTransferInTicketDetail',function (data) {
},'json');