$.ajax({
type: "POST",
url: "offreship.php",
data: { carrier: "value", $('#form_id').serialize()}
谢谢你的帮助!
您为data
属性提供的对象不完整并导致语法错误。尝试这个:
$.ajax({
type: "POST",
url: "offreship.php",
data: {
carrier: $('#form_id').serialize()
}
});
如果您打算carrier: "value"
,您需要为序列化表单命名您的属性,例如:
$.ajax({
type: "POST",
url: "offreship.php",
data: {
carrier: "value", form: $('#form_id').serialize()
}
});