当前位置

网站首页> 程序设计 > 开源项目 > 编程语言 > 浏览文章

JavaScript 的 HTML 解析器 jsdom

作者:小梦 来源: 网络 时间: 2024-07-08 阅读:

3月21日 深圳 OSC 源创会正在报名中,送华为海思开发板

jsdom 是 WHATWG DOM 和 HTML 标准的 JavaScript 实现,主要用于 io.js 框架。

示例代码:

// Count all of the links from the io.js build pagevar jsdom = require("jsdom");jsdom.env(  "https://iojs.org/dist/",  ["http://code.jquery.com/jquery.js"],  function (errors, window) {    console.log("there have been", window.$("a").length - 4, "io.js releases!");  });

或者:

// Run some jQuery on a html fragmentvar jsdom = require("jsdom");jsdom.env(  '<p><a class="the-link" href="https://github.com/tmpvar/jsdom">jsdom!</a></p>',  ["http://code.jquery.com/jquery.js"],  function (errors, window) {    console.log("contents of a.the-link:", window.$("a.the-link").text());  });

热点阅读

网友最爱