在chrome的控制台我们很清楚的看到了serializeArray()返回的是json数组,数组的每个对象都是有json字符串构成,我们可以看到,每个json字符串包括两个键值对,每个键值对都是有name,value组成,其实serializeArray()它把表单里的每个需要提交的dom的name的值赋给json字符串的name,dom的value的值赋给json字符串的value.
那么我们只需这要添加额外的内容:
var dataParam = $("#updateChannelForm").serializeArray()
例如我想添加sex="男"
dataParam.push({"name":"sex","value":"男"}) 就可以了
我们看到serialize()方法把表单里的内容序列化成了字符串
"id=58&channelType=2&subTitle=591teststetets&extAttrValueId=599"
那么我们只需这要添加额外的内容:
var dataParam = $("#updateChannelForm").serialize()
例如我想添加sex="男"
dataParam =dataParam +"&"+"sex=男"
$.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))
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)