gpt4 book ai didi

jquery - 防止 jQuery 转义 html 实体

转载 作者:行者123 更新时间:2023-12-03 22:10:14 25 4
gpt4 key购买 nike

我有一些简单的 html 编辑器。假设用户输入以下内容:

<p>Ok, this just &amp; sucks :) &ndash;</p>

并将其保存到某个变量中:

var content = "<p>Ok, this just &amp; sucks :) &ndash;</p>";

现在,我在某个地方使用 jQuery 将此文本附加到某个元素:

$(this).html(content); // where content is the string above

问题是它被转义了:

<p>Ok, this just &amp;amp; sucks :) &amp;ndash;</p>

如何才能使用 & 获得精确的字符串?和——并且还可以有 < 而不是 < ;因为我需要 html 标签?

编辑:添加更多详细信息

最佳答案

问题不在于 jQuery 正在转义实体。我认为如果您使用 console.log 写入 content 字符串,您会看到编辑器正在向您返回转义实体。

.html().text() 的要点在于 .html() 用于将要处理的 HTML作为 HTML。

关于jquery - 防止 jQuery 转义 html 实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7773553/

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