[ Javascript ] Form.serialize를 json형식으로 변환하기
jQuery.fn.serializeObject = function() { 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; }); }//if ( arr ) { } } catch (e) { alert(e.message); } finally { } return obj; }; 출처: https://cofs.tistory.com/184 [CofS] 이렇게 공통으로 쓰는 함수를 만들고 var data = { ..
2020. 5. 28. 12:21