微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

javascript – 将HTML编码的字符串作为HTML附加,而不是文本

我试图追加这个字符串:
<div> hello </div>

作为HTML节点,而不是附加HTML,它只是附加文本:

<div> hello </div>

如何使jQuery将其作为HTML节点附加,而不仅仅是文本?

我想要一个可以用于嵌套div和文本的解决方案.

解决方法

// This is your string :)
var myString = "&lt;div&gt; hello &lt;/div&gt;";

// This is a way to "htmlDecode" your string... see link below for details.    
myString = $("<div />").html(myString).text();

// This is appending the html code to your div (which you don't have an ID for :P)
$("#TheDivIWanttochange").append(myString);

HTML-encoding lost when attribute read from input field

原文地址:https://www.jb51.cc/js/155357.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐