chapter無(wú)法使用find方法篩選strong標(biāo)簽取不到text的值,請(qǐng)大神指點(diǎn)
var?http?=?require('http') var?cheerio?=?require('cheerio') var?url?=?'http://idcbgp.cn/learn/348' function?fliter(html){ var?$?=?cheerio.load(html) var?chapters?=?$('.chapter') console(chapters[0].find('strong').text()) } http.get(url,function(res){ var?html?=?''? res.on('data',function(data){ html?+=data }) res.on('end',function(){ fliter(html) }) }).on('error',function(){ console.log('錯(cuò)誤!!!') })
報(bào)錯(cuò)如下:
2016-04-21
chapters[0]改為chapters.eq(0)