Without haste, but without rest
[jquery] tr을 돌며 json 본문
var data={};
$('.tbl_task').find('tr').each(function(){
var cls=$(this).attr('class');
var row={};
$(this).find('td textarea').each(function(){
row[$(this).attr('name')]=$(this).val();
});
data[cls]=row;
});
console.log(data);