美文网首页
HTML元素分析插件cheerio

HTML元素分析插件cheerio

作者: b_walking | 来源:发表于2023-12-29 12:09 被阅读0次
    $ = 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 // 退出遍历
        }
    })
    

    相关文章

      网友评论

          本文标题:HTML元素分析插件cheerio

          本文链接:https://www.haomeiwen.com/subject/jpojndtx.html