使用ajax异步请求的格式如下:
//先序列化所有参数,再通过ajax提交数据
var params = $.param({
'buycarid':othis.buycarid,
'actprice': $('#actprice').val(),
'numbers': $('#numbers').val(),
}, true);
$.ajax({
url: '/updatebuycar.action',//请求路径
type: 'post',
data: params,//传输的数据
dataType: 'json',
success: function (data) {//返回值的处理
if (data === "0") {
layer.msg("更新成功");
window.location.href = '/admin/buycars/showbuycar?customerid='+othis.customerid;
}else {
layer.msg("更新失败");
}
}
});