. 代碼如下:
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")));可以把這個在火狐浏覽器裡面試試效果.很好的一個方法.