作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的网页中有一个 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/
我的网页中有一个 div 标签 {!! $post->post !!} 当我点击这个div的内容时,CKEditor工具栏会自动出现。 我尝试禁用此工具栏。我尝试了以下方法,但未能成功。
我是一名优秀的程序员,十分优秀!