ajax 多个参数问题,如何既能表单序列化获取,又能加参数,加全部代码

$.ajax({
    type: "post",
     url: "{:u('cart/totalByCard')}?t="+Math.random(9999), 
     data: {'address':address,'delivity':delivity,'payment':payment,$('#card_form').serialize()},
     dataType: "json",
     success: function(json)
     {
        $('#cost_item').html('¥'+parseFloat(json.cost_item).toFixed(2));
        $('#cost_freight').html('¥'+parseFloat(json.cost_freight).toFixed(2));
        $('#total_amount').html('¥'+parseFloat(json.total_amount).toFixed(2));
        $('#pmt_order').html('¥'+parseFloat(json.pmt_order).toFixed(2));

     }
阅读 13.7k
1 个回答
$.param({'address':address,'delivity':delivity,'payment':payment}) + '&' + $('#card_form').serialize()
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题
宣传栏