js 抓取 表格数据
Posted 皖苏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 抓取 表格数据相关的知识,希望对你有一定的参考价值。
function 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); }
以上是关于js 抓取 表格数据的主要内容,如果未能解决你的问题,请参考以下文章
Python网页抓取 - 当页面通过JS加载内容时如何获取资源?