1
セレクタ「cheerio」のようなこのjQueryは、HTMLページのコメントノードからコメントを取得しようとします。
$はcheerioオブジェクトです。 どうすればできますか?おかげシェリルセレクタを使用してコメント要素のテキストを取得
console.log($('*').contents().length); //reports back more than 1000
$('*').contents().filter(function() {
if (this.nodeType == 8) {
//the following gives null for every node found
console.log($(this).html());
//the following gives blank for every node found
console.log($(this).text());
}
});