gpt4 book ai didi

javascript - 使用 jquery 将 html 对象转换为字符串失败

转载 作者:行者123 更新时间:2023-11-28 05:47:24 25 4
gpt4 key购买 nike

尝试将我解析的 html 对象转换为字符串,但它只返回标题。希望在这方面提供一些意见

var html = `<html><title>My title</title><head></head><body><h1>hello World</h1></body></html>`;
html = $.parseHTML(html);
//do something here
//after parse to object, revert back to string
htmlString = $(html).prop('outerHTML'); //this is not working

console.log(htmlString);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

最佳答案

尝试

var _html = `<html><title>My title</title><head></head><body><h1>hello World</h1></body></html>`;
_html = $(_html);
htmlString = $('<div></div>').append(_html).html() ; //this should work

console.log(htmlString)

;

关于javascript - 使用 jquery 将 html 对象转换为字符串失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38390087/

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