$("#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;
});
});
版权声明:本文为snn1410原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。