js 抓取 表格数据
2021-02-12 02:15
标签:表格 png UNC from nbsp 技术 rom src find js 抓取 表格数据 标签:表格 png UNC from nbsp 技术 rom src find 原文地址:https://www.cnblogs.com/zhuwansu/p/13036714.htmlfunction getData(selector) {
return $(selector || ‘table‘).map((x, y) => group(Array.from($(y).find(‘td‘)), $(y).find(‘tr:has(td):first td‘).length, console.log($(y).find(‘tr:has(td):first td‘).length)).map(a => Array.from(a).map(b => b.textContent)).filter(x => x.length != 0))
.filter(x => x.length != 0);
}