$ = cheerio.load(body)
body为含有html元素的字符串,若其中存在以下片断
<table class="table clearfix">
<tr>
<th>日期</th>
<th>仙桃</th>
<th>大湾</th>
<th>双龙</th>
</tr>
</table>
遍历<th>中的每一个元素,语句为:
$('table tr th').each(function(i) {
if ($(this).text() == '仙桃') { // $(this)指当前遍历的元素
console.log($(this).next().text()) // 输出为大湾,$(this).next()为下一个元素
return false // 退出遍历
}
})
网友评论