var aa=function(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']; }
});
return o;
}
양식 객체를 전달하면 됩니다. 예를 들어 console.info( aa($( "#myForm"))); Firefox 브라우저에서 이 방법을 시도해 볼 수 있습니다.