jquery 获得table中所有行的数据

来源:互联网 发布:淘宝 装修日记 编辑:程序博客网 时间:2024/05/22 11:34
$("#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;          });});

0 0
原创粉丝点击