gpt4 book ai didi

jQuery/AJAX 读取 div 标签内的 html

转载 作者:可可西里 更新时间:2023-11-01 13:38:15 26 4
gpt4 key购买 nike

我正在通过 AJAX 从数据库中获取 HTML,但是当我将该 HTML 输出到一个 div 中时,它只显示实际的 HTML 文本,而不是图片以及浏览器看到的图片。有人知道怎么做吗?我在 textarea #html 中输出 HTML,并希望看到它在 div #preview 中呈现。这是代码:

$(document).ready(function(){
$('#creative').change(function() {
$.ajax({
url: '/app/components/MailingsReport.cfc',
//POST method is used
type: "POST",
//pass the data
data: {
method: "getCreativeHTML",
creativeID: $('#creative').val(),
datasource: "shopping_cart"
},
dataType: "html",
//contentType: "application/text; charset=utf-8",
success: function(response){
var obj = $.trim(response);
//alert("response");
if (obj == '"0 records"') {
$('#preview').html("No creative found.");
}
else {
$('#html').val( obj );
$('#preview').html( obj );
}
}
})
});
});

最佳答案

我看到你回答了你自己的问题。您还可以考虑 jQuery .load()方法,专为此类事情而设计。

关于jQuery/AJAX 读取 div 标签内的 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11006053/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com