cheerio

为服务器特别定制的,快速、灵活、实施的jQuery核心实现.

Introduction

将HTML告诉你的服务器

var cheerio = require('cheerio'),
$ = cheerio.load('

Hello world

');

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

$.html();

相关文章:

  • 2021-07-31
  • 2021-12-04
猜你喜欢
  • 2022-12-23
  • 2019-06-28
  • 2021-07-01
  • 2022-01-12
  • 2021-06-06
  • 2021-04-14
相关资源
相似解决方案