CKEDITOR:CKEDITOR.disableAutoInline = true无效

时间:2016-12-15 03:08:25

标签: ckeditor

我的网页上有div标记

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

当我点击此div的内容时,会自动显示CKEditor Toolbar我尝试停用此工具栏。我尝试了以下但无法做到。

尝试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>

1 个答案:

答案 0 :(得分:4)

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

nb_epoch