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;
}
只要傳遞一個form物件進去就可以.經過方法處理就可以回傳一個物件.例如console.info(aa($( "#myForm")));可以把這個在火狐瀏覽器裡面試試看效果.很好的一個方法.