使用 Node jquery 操作现有文档
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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. Tryconsole.log $('body').parent().html()