어떻게 표의 데이터를 서열화합니까

1687 단어 서열화
    $.fn.serializeObject = function()    

    {    

       var o = {};    

       var a = this.serializeArray();    

       $.each(a, function() {    

           if (o[this.name]) {    

               if (!o[this.name].push) {    

                   o[this.name] = [o[this.name]];    

               }    

               o[this.name].push(this.value || '');    

           } else {    

               o[this.name] = this.value || '';    

           }    

       });    

       return o;    

    };

다음 함수를 호출합니다.
dataArray = $("form").serializeObject();

좋은 웹페이지 즐겨찾기