var obj = null;

try {

if(this[0].tagName && this[0].tagName.toUpperCase() == 'FORM'){

var arr = this.serializeArray();

if(arr) {

obj = {};

jQuery.each(arr, function(){ obj[this.name] = this.value; });

}

}

} catch(e) {

alert(e.message);

} finally {}

return obj;

 

참고

json 형태는 이렇다.

{ "pe" : [{"f"" : "value" }] }

설정

트랙백

댓글