“DOMPARSER nie jest zdefiniowany” Kod odpowiedzi

DOMPARSER nie jest zdefiniowany

const jsdom = require("jsdom");
const dom = new jsdom.JSDOM(`<!DOCTYPE html><p>Hello world</p>`);
dom.window.document.querySelector("p").textContent; // 'Hello world'
Kamran Taghaddos

DOMPARSER nie jest zdefiniowany

const htmlparser = require("htmlparser2");
const parser = new htmlparser.Parser({
  onopentag: (name, attrib) => {
    if (name=='p') console.log('a paragraph element is opening');
  }
}, {decodeEntities: true});
parser.write(`<!DOCTYPE html><p>Hello world</p>`);
parser.end();
// console output: 'a paragraph element is opening'
Kamran Taghaddos

Odpowiedzi podobne do “DOMPARSER nie jest zdefiniowany”

Pytania podobne do “DOMPARSER nie jest zdefiniowany”

Więcej pokrewnych odpowiedzi na “DOMPARSER nie jest zdefiniowany” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu