2011-09-16 89 views

回答

2

Cheerio持久DOM實現:微小,快速,優雅實現專門爲服務器設計的核心jQuery。

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

在這裏,這是最好的答案,如果你想查詢的HTML。 – chovy

相關問題