我在应用程序上使用CLEditor,我遇到了显示textarea格式化内容的问题。我从服务器收到的响应与此类似:
<span style="text-decoration: underline;">Number of customers:</span> <span style="font-weight: bold;">34</span><br>
我想在页面上以HTML格式显示此代码段:
有没有办法在jQuery中实现这个目标?
答案 0 :(得分:1)
不确定我是否做得对,但是:
$('#somediv').html(response);