虽然cheerio语法与jQuery类似,但是jQuery选择元素时:$('.class')返回的是jQuery对象,我们可以通过数组方式获取每个.class元素$('.class')[1].find('selector').xxxx然而,cheerio不能使用上面方法,会提示 find is not a function.在Python中,使用BeautifulSoup返回的也是HTML对象数组,很方便将所有元素循环出来,想知道node有没有相关方法。
添加回答
举报
0/150
提交
取消