複製程式碼程式碼如下: function serializeObject(form){ var o = {}; $.each(form.serializeArray(),function(index){ if(o[this['name']]){ o[this['name']] = o[this ['name']] "," this['value'] }else{ o[this['name']] = this['value']; } } );返回 o; }