Javascript/convert (2) 썸네일형 리스트형 table to json 변환 http://www.fletchzone.com/post/jQuery-Convert-HTML-Table-to-JSON.aspx jQuery, Convert HTML Table to JSON - Depricated, See V2! The problem:In situations where you are allowing the user to edit html tables client side by adding or removing rows or editing existing rows, you find that you need a way to propagate these changes back to the business layer and downstream to the database as the case ma.. table to java array 변환 http://stackoverflow.com/questions/1872485/iterate-through-html-table-using-jquery-converting-the-data-in-the-table-into-js var myTable = []; $('#TableID tr').each(function(i, tr) { var myTr = []; $('td', tr).each(function(i, td) { myTr.push($(td).html()); } myTable.push(myTr); }); 이전 1 다음