爬虫--cheerio

const cheerio = require('cheerio')
const $ = cheerio.load('<h2 class="title">Hello world</h2>')

$('h2.title').text('Hello there!')
$('h2').addClass('welcome')

$.html()
//=> <h2 class="title welcome">Hello there!</h2>

https://github.com/cheeriojs/cheerio
posted @ 2018-04-12 14:52  世界,太精彩  阅读(181)  评论(0编辑  收藏  举报