我需要解析一个包含表格的HTML。
<div>
<table id="tableID">
<tr>
<td class="tdClass">
<span id="id1">Some data i need to access</span>
</td>
<td class="tdClass">
<span id="id2">Some data i need to access</span>
</td>
</tr>
</table>
</div>
我在NW.js应用程序上使用cheerio。我无法弄清楚如何访问数据,我尝试过span's ID,但它不起作用。
div包含在页面正文中。
var $ = cheerio.load(html)
alert($('#id1').html())
当我试图提醒范围的内容时,我变为空。
答案 0 :(得分:0)
试试这个:
$ = cheerio.load(html, {normalizeWhitespace: false, xmlMode: true});