admin管理员组文章数量:1339702
i'm trying to get elements by id from an html file in a js file using nodejs. I'm getting the error 'document id not defined' because node doesn't provide a document object model by default.
So how can i use document.getElementById() in nodejs ?
Thank you !
i'm trying to get elements by id from an html file in a js file using nodejs. I'm getting the error 'document id not defined' because node doesn't provide a document object model by default.
So how can i use document.getElementById() in nodejs ?
Thank you !
Share Improve this question asked Sep 10, 2018 at 11:25 Sarah ßeziSarah ßezi 1091 gold badge3 silver badges6 bronze badges 2-
2
node.js programs don't run in a browser. There is no
document
in the first place. Are you asking how to parse an HTML file in node.js? – user5734311 Commented Sep 10, 2018 at 11:27 - 3 Possible duplicate of How do I parse a HTML page with Node.js – user5734311 Commented Sep 10, 2018 at 11:28
2 Answers
Reset to default 5If you want to parse files within the same server you should probably use some of this options, because nodejs it's just a JavaScript implementation, There is no window
or document
object, see this. But to answer exactly your question:
how can I use document.getElementById() in nodejs ?
You could do it using Puppeteer
Puppeteer is a Node library which provides a high-level API to control headless Chrome or Chromium over the DevTools Protocol. It can also be configured to use full (non-headless) Chrome or Chromium.
Here a basic example:
const puppeteer = require('puppeteer');
(async () => {
const browser = await puppeteer.launch();
page = await browser.newPage();
await page.goto('http://example./some.html', {waitUntil: 'load'});
const newPage = await page.evaluate(() => {
return document.getElementById("idexample").innerHTML;
});
console.log(newPage)
})();
Use JSDOM npm package:
jsdom is a pure-JavaScript implementation of many web standards, notably the WHATWG DOM and HTML Standards, for use with Node.js. In general, the goal of the project is to emulate enough of a subset of a web browser to be useful for testing and scraping real-world web applications. https://github./jsdom/jsdom
本文标签: javascripthow to use documentgetElementById() in NodejsStack Overflow
版权声明:本文标题:javascript - how to use document.getElementById() in Nodejs - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743600244a2508474.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论