zoukankan      html  css  js  c++  java
  • 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 对象
  • 相关阅读:
    标签,css,排版
    浏览器的内核
    焦点事件
    cookie
    浏览器的行为
    百叶窗分析
    水仙花数
    递归函数
    拖拽的问题解决
    正则的具体
  • 原文地址:https://www.cnblogs.com/wangdahai/p/6060682.html
Copyright © 2011-2022 走看看