ajax 多个表单值问题,表单序列化加其它表单值

Posted God丶魔多

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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));

     }
$.param({‘address‘:address,‘delivity‘:delivity,‘payment‘:payment}) + ‘&‘ + $(‘#card_form‘).serialize()
//$.param序列化key/value 对象

 

以上是关于ajax 多个表单值问题,表单序列化加其它表单值的主要内容,如果未能解决你的问题,请参考以下文章

jQuery ajax - serialize() 方法-输出序列化表单值

ajax序列化表单,再也不用通过data去一个个的传值了

ajax-serialize

ajax()使用serialize()提交form表单

jquery中怎么样获取表单所有值

Jquery serialize()提交多个表单数据