从JSON打印html

时间:2018-06-11 10:01:45

标签: php jquery json

只是寻求一些帮助。我在JSON中有html标签。但是当我尝试打印它时,标签只是作为字符串打印而不是被解释为HTML。例如< \ bold>或者< \ br>

使用PHP时,我会对其进行解码,然后按预期打印。我如何做这个,所以我可以通过jquery将它附加到元素?

示例代码

response = { 
  "title": "<bold>This is the title</bold><br>Next is the body<br>" 
};
$('#title').text(response.title); 

由于

1 个答案:

答案 0 :(得分:1)

只需使用.html()函数,而不是.text()

response = { 
  "title": "<bold>This is the title</bold><br>Next is the body<br>" 
};
$('#title').html(response.title); 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<div id="title"></div>