gpt4 book ai didi

jquery - 如何更改和检索 HTML 文档

转载 作者:行者123 更新时间:2023-11-28 03:34:17 25 4
gpt4 key购买 nike

我在 NodeJS 中使用 JQuery npm 来尝试处理一些 HTML。但我似乎无法将最终的 html 作为文本发送到带有 http 模块的管道中。我可以获得 $html.find('head') 来生成 html 文本,但是 $html.find('html') 和所有其他解决方案都会生成一个对象。

这是我的代码:

// this code, which will run under nodejs using jquery, should update the head in an entire html document

var $ = require('jquery');
var $html = $('<html><head><title>this should be replaced</title></head><body>and the entire document should be available as text</body></html>');
console.log('html', $html);
var $body = $html.find('body');

var res = $html.find('head').replaceWith('<head><title>with this</title></head>');
console.log(res.html());

http://jsfiddle.net/Wb7yV/4/

谢谢!

最佳答案

您的 jsfiddle 已经非常接近了。要改变头部,只需使用这个:

$('head').html('<title>with this</title>');

关于jquery - 如何更改和检索 HTML 文档,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15393820/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com