CLEditor - 如何将原始HTML显示为格式化标记?

时间:2013-09-03 11:50:53

标签: javascript jquery html ajax cleditor

我在应用程序上使用CLEditor,我遇到了显示textarea格式化内容的问题。我从服务器收到的响应与此类似:

<span style="text-decoration: underline;">Number of customers:</span> <span style="font-weight: bold;">34</span><br>

我想在页面上以HTML格式显示此代码段:

enter image description here

有没有办法在jQuery中实现这个目标?

1 个答案:

答案 0 :(得分:1)

不确定我是否做得对,但是:

$('#somediv').html(response);