我在用cheerio js抓取元素时遇到问题。
我打开了以下网站-> https://www.voobly.com/ladder/view/Age-of-Mythology-The-Titans/1v1-Supremacy
当我查看页面源代码时,我可以看到id-> pagebrowser1,但是当我尝试使用cheerio抓取它时,它返回null。
const axios = require('axios');
const cheerio = require('cheerio');
axios.get('https://www.voobly.com/ladder/view/Age-of-Mythology-The-Titans/1v1-Supremacy').then((res) => {
const $ = cheerio.load(res.data)
console.log($("#pagebrowser1").html());
});