.getElementById()
не есть функция. Что делать?<blockquote id="m178043663" class="post-message">
УНИЖЕНИЯ ТРЕД<strong> WEBM/MP4</strong>
</blockquote>
request('https://2ch.hk/b/',(error,response,body)=>{
const $ = cheerio.load(body)
const threadfind = $('blockquote').text()
if(threadfind && threadfind.includes('WEBM'))
{ // thread find blockquote
const threadid= threadfind.getElementById()
console.log(threadid)
}
})
request('https://2ch.hk/b/',(error,response,body)=>{
const $ = cheerio.load(body)
const threadfind = $('blockquote')
if(threadfind && threadfind.text().includes('WEBM'))
{ // thread find blockquote
const threadid= threadfind.attr('id')
console.log(threadid)
}
})