这篇参考手册是对cheerio 官方文档 的中文翻译
cheerio是jquery核心功能的一个快速灵活而又简洁的实现,主要是为了用在服务器端需要对DOM进行操作的地方
简介
让你在服务器端和html愉快的玩耍
0 1 2 3 4 5 6 7 |
var cheerio = require('cheerio'), $ = cheerio.load('<h2 class = "title">Hello world</h2>'); $('h2.title').text('Hello there!'); $('h2').addClass('welcome'); $.html(); //=> <h2 class = "title welcome">Hello there!</h2> |
安装
0 |
npm install cheerio |