gpt4 book ai didi

CKEDITOR: CKEDITOR.disableAutoInline = true 不起作用

转载 作者:行者123 更新时间:2023-12-02 01:04:39 25 4
gpt4 key购买 nike

我的网页中有一个 div 标签

<div id="editor1" name="editor1" contenteditable="true">
{!! $post->post !!}
</div>

当我点击这个div的内容时,CKEditor工具栏会自动出现。 我尝试禁用此工具栏。我尝试了以下方法,但未能成功。

尝试 1:

<script>
$(document).ready(function() {
CKEDITOR.disableAutoInline = true;
});
</script>

尝试 2:在 CKEditor 配置文件中

config.disableAutoInline = true;

我哪里错了?我在 Google、Stakeoverflow 上搜索了几个小时,但没有找到任何解决方案。有人可以帮助我吗?

请注意:

在页眉中我添加了

<link rel="stylesheet" href="http://localhost/ewt/resources\assets  
\ckeditor\plugins\codesnippet\lib\highlight\styles\magula.css">

并在我添加的页脚中

<script src="http://localhost/ewt/resources/assets/ckeditor/ckeditor.js">  </script>
<script src="http://localhost/ewt/resources/assets/ckeditor/adapters
/jquery.js"></script>
<script>hljs.initHighlightingOnLoad();</script>

最佳答案

我遇到了同样的问题,对我来说,当我在 document.ready 之外设置disableAutoInline时,它开始工作:

<script type="text/javascript">
CKEDITOR.disableAutoInline = true;
$(document).ready(function () {
...
}
</script>

关于CKEDITOR: CKEDITOR.disableAutoInline = true 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41155788/

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