xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

cheerio & jQuery for server

Fast, flexible & lean implementation of core jQuery designed specifically for the server.

https://cheerio.js.org/

https://github.com/cheeriojs/cheerio

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

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

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

refs



©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


原文地址:https://www.cnblogs.com/xgqfrms/p/14259469.html