使用 Node jquery 操作现有文档

发布于 2024-11-28 12:12:14 字数 575 浏览 0 评论 0原文

我正在使用 node-jquery,我想用它来修改现有文档- 这是从 doctype 到结束 html 标签的所有过程。

但我发现节点 jquery 有点偏离 -

$ = require 'jquery'
$('body').append "<div class='testing'>Hello World</div>"
console.log $("body").html()

Returns:

<div class="testing">Hello World</div> 

注意缺少 body 标签,这在正常的 jquery 中是必需的。就像有一个空白文档 - 我对此很满意,除了附加完整文档会使 jquery 崩溃。

$("body").append() 如何在没有正文的文档中工作?还有其他人使用node-jquery吗?它被认为是稳定的吗?我如何使用它来操作现有文档?

I'm using node-jquery, and I'd like to use it to modify an existing document - which is all the way from the doctype to closing html tag.

But I'm finding node jquery a little off -

$ = require 'jquery'
$('body').append "<div class='testing'>Hello World</div>"
console.log $("body").html()

Returns:

<div class="testing">Hello World</div> 

Note the lack of a body tag, which in normal jquery would have been required. It's like there's a blank document - which I'm fine with, except appending a full document makes makes jquery crash.

How can $("body").append() work in a document that has no body? Is anyone else using node-jquery? Is it considered stable? How can I use it to manipulate an existing document?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

远山浅 2024-12-05 12:12:14

console.log $('body').html() 将输出 body 标记的innerHTML,这可能只是新创建的 div。尝试 console.log $('body').parent().html()

console.log $('body').html() will output the innerHTML of your body tag, which propably only is the newly created div. Try console.log $('body').parent().html()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文