为什么 cheerio 中的以下 class 选择器不起作用?
Why does the following class selector in cheerio doesn't function?
js 代码:
...
let wr = $('div[class="topstory-content-wrapper last"]');
console.log(wr.html());
...
错误:抛出新的语法错误("Malformed attribute selector: " + 选择器);
^
语法错误:格式错误的属性选择器:class = topstory-content-wrapper last
尝试用下一种方式编写您的选择器:
const wr = $('div.topstory-content-wrapper.last');
js 代码:
...
let wr = $('div[class="topstory-content-wrapper last"]');
console.log(wr.html());
...
错误:抛出新的语法错误("Malformed attribute selector: " + 选择器); ^
语法错误:格式错误的属性选择器:class = topstory-content-wrapper last
尝试用下一种方式编写您的选择器:
const wr = $('div.topstory-content-wrapper.last');