我使用 jQuery 创建了一个 ajax 调用,它以 JSON 格式返回 HTML 内容。但是,当内容显示在屏幕中时,HTML 标记(如中断标记、段落标记)正在被处理为 HTML。我怎样才能使我不会在屏幕上看到这些标签。下面是我的代码
$.ajax({
type: "POST",
url: url,
data: dataString,
dataType:'JSON',
success: function(data) {
var mywindow = window.open('','_blank', 'mydiv');
mywindow.document.write(data);
mywindow.print();
//reload receitas
$.ajax({
url: "<?php echo $this->baseUrl();?>/paciente/Ajax/loadreceitas",
dataType : 'html',
beforeSend:function(){
$("#receitasList").html("<img src=\"<?php echo $this->baseUrl();?>/imgs/ajax-loader.gif\">");
},
success: function(data) {
$("#receitasList").html(data);