cheerio
为服务器特别定制的,快速、灵活、实施的jQuery核心实现.
Introduction
将HTML告诉你的服务器
var cheerio = require('cheerio'),
$ = cheerio.load('
Hello world
');$('h2.title').text('Hello there!');
$('h2').addClass('welcome');
$.html();
为服务器特别定制的,快速、灵活、实施的jQuery核心实现.
将HTML告诉你的服务器
var cheerio = require('cheerio'),
$ = cheerio.load('
$('h2.title').text('Hello there!');
$('h2').addClass('welcome');
$.html();