Node.js 像标准 javascript 一样检查 dom
如何从 html 源创建 document
对象并使用 document.*
函数(如 Node.js 中的 getElementById
)?
How is it possible to create document
object from html source and use document.*
functions like getElementById
in node.js?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能想要 DOM 的 javascript 实现,jsdom。
You probably want something like the javascript implementation of the DOM, jsdom.
如果您只想使用类似 jQuery 的 API 来遍历和摆弄 HTML 标记,更好的选择是 cheerio。
jsdom 是一个成熟的 DOM 实现,甚至可以运行页面自带的 JS。结果,它相当重。如果您不需要任何这些功能,cheerio 的速度要快 8 倍。
If you just want to use a jQuery-like API to traverse and fiddle with HTML markup, a better option is cheerio.
jsdom is a full-fledged DOM implementation that can even run the JS that comes with a page. As a result, it's pretty heavy. If you don't need any of that functionality, cheerio is 8x faster.