2
私は以下のとおりcheerio.js
を使用しています:cheerio.jsのノード行番号を取得する方法は?
var $ = cheerio.load(html,{withStartIndices : true});
私はconsole.log($('#element1'));
を使用する場合。文字位置のノードを返します。
{
type: 'tag',
name: 'h6',
attribs: { align: 'center', id: 'r' },
children: [ [Object] ],
next: null,
startIndex: 310,
.......
cheerio.js
に特定の要素の行番号を取得する方法はありますか?