如何使用querySelector

时间:2017-12-27 18:03:16

标签: javascript node.js jsdom

如何使用querySelector

选择整个文档

以下是代码:

var jsdom = require('jsdom');
const {JSDOM} = jsdom;
const dom = new JSDOM(htmlSource)
var q = dom.window.document.querySelector.bind(dom.window.document);
q("title").innerHTML = "This is the title replaced"
console.log(q("html").outerHTML);
htmlSource = q("html").outerHTML;
fs.writeFileSync("public/html/index2.html", htmlSource, "utf8");

我想将已更改的title元素重写为新文件index2.html。我能够输出更改的元素但无法写入新版本的文件。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

您可以像dom.window.document.title = "new title"

一样进行更改

https://developer.mozilla.org/en-US/docs/Web/API/Document/title