$("#edit_save").click(function(){ // 遍历所有的table数据 html=''; $('.phone-number-table').find('tbody').each(function () { log( $(this)); $(this).find('tr').each(function () { //log($(this).text()); $(this).find('td').each(function () { html += $(this).text() + ','; }); html += '|'; log(html); }); log('html= '+html); return false; }); });