-3
$.ajax({
type: "POST",
url: "offreship.php",
data: { carrier: "value", $('#form_id').serialize()}
謝謝你的幫助!
$.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()
}
});
您需要提供更多的上下文。根據你的代碼片段,看起來你需要刪除引號的值,然後按照我的帖子中的第二個例子。 – Alex
有什麼問題嗎? – elmigranto
對我們的數據正確的sintax:{carrier:「value」,$('#form_id')。serialize()} – Momo