我正在编写一个使用jQuery(cheerio)选择器从网站上提取内容的网络抓取工具,将其转换为供人们使用的API。
在我的代码中,我有以下选择器:
$('div#quickplay>section:nth-child(3)>div>div:nth-child(3)>div:nth-child(4)>div>table>tbody>tr:nth-child(1)>td:nth-child(2)').text()
$('div#quickplay>section:nth-child(3)>div>div:nth-child(3)>div:nth-child(1)>div>table>tbody>tr:nth-child(1)>td:nth-child(2)').text()
为了提高代码的可读性,我想将其简化为:
$('div:nth-child(4)>div>table>tbody>tr:nth-child(1)>td:nth-child(2)').text()
甚至更短。