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

前端之家收集整理的这篇文章主要介绍了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.f2er.com/js/155357.html

猜你在找的JavaScript相关文章