gpt4 book ai didi

javascript - 未捕获的异常 : [CKEDITOR. editor] 实例已经存在

转载 作者:可可西里 更新时间:2023-11-01 02:18:40 29 4
gpt4 key购买 nike

我已将 CKEditor 添加到我的站点中。即使出现此 JS 错误,一切正常:

未捕获的异常:[CKEDITOR.editor] 实例“simple_editor”已经存在。

下面的代码包含在一个 PHP 文件中,我将其包含在需要编辑器的位置。我每页只有一个编辑器实例。

<textarea class='ckeditor' id='simple_editor' name='simple_editor'>".$page_content."</textarea>";

<script type="text/javascript">
CKEDITOR.replace( 'simple_editor',
{
height: '110px',
toolbar :
[
['Link','Unlink'],
['Styles','Format','Font','FontSize'],
['Bold','Italic','Underline','Strike'],
['TextColor','BGColor'],
['NumberedList','BulletedList','Outdent','Indent']
]
});
</script>

经过一番谷歌搜索后,我看到有人发布了一些不起作用的解决方案。

if (CKEDITOR.instances['simple_editor']) { delete CKEDITOR.instances['simple_editor'] };
if (CKEDITOR.instances['simple_editor']) { CKEDITOR.instances['simple_editor'].destroy(); }

有人知道怎么办吗? :S

最佳答案

删除 class='ckeditor',因为它会触发自动替换系统。

关于javascript - 未捕获的异常 : [CKEDITOR. editor] 实例已经存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3606681/

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