gpt4 book ai didi

javascript - CKeditor setData() 方法省略图像

转载 作者:行者123 更新时间:2023-11-29 10:17:58 26 4
gpt4 key购买 nike

当CKEditor图像中的设置数据在编辑器区域消失时。链接和其他格式都可以,所以看起来不像双引号。另外,我尝试了绝对定位和外部图像,所以这不是找不到图像的问题。

这是我的代码:

function getContent(id)
{
console.log($('#content-article-' + id).html());

return $('#content-article-' + id).html();
}
function enableEdition()
{
if (current_conclusion != 'NEW')
{
$('#titular-edit').val(getTitle(current_article));

//This setData() sets everthing but images
CKEDITOR.instances.editor.setData(getContent(current_article));
}
}

图像标签被 <br> 代替编辑器 iframe 内的标签

最佳答案

CKEditor 4.1 附带 Advanced Content Filter这是你问题的根源。您很可能不使用添加 <img> 的图像插件至 allowedContent规则(不是吗?)。这就是编辑器从您的内容中丢弃这些标签的原因,这也是您必须手动配置它的原因。

查看相关答案:Stop CKEditor removing divs , CKEditor strips inline attributes

关于javascript - CKeditor setData() 方法省略图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17653178/

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