jsdom是WHATWGDOM和HTML标准的JavaScript实现,主要用于io.js框架。
示例代码:
// Cout all of the liks from the io.js build pagevar jsdom = require("jsdom");jsdom.ev( "https://iojs.org/dist/", ["https://code.jquery.com/jquery.js"], fuctio (errors, widow) { cosole.log("there have bee", widow.$("a").legth - 4, "io.js releases!"); });或者:
// Ru some jQuery o a html fragmetvar jsdom = require("jsdom");jsdom.ev( '<p><a class="the-lik" href="https://github.com/tmpvar/jsdom">jsdom!</a></p>', ["https://code.jquery.com/jquery.js"], fuctio (errors, widow) { cosole.log("cotets of a.the-lik:", widow.$("a.the-lik").text()); });
评论