因为我使用CKEditor的CDN,所以我有一个奇怪的错误。编辑器看起来很完美,但我无法点击编辑器来编写内容。但是每个其他功能都有效。
我已添加contenteditable="true"
以防万一,但没有任何重大变化。
这是我的html和src:
<textarea name="content" id="content" contenteditable="true">
{{$article->content}}
</textarea>
<script>CKEDITOR.replace( 'content' );</script>
<script src="//cdn.ckeditor.com/4.6.0/standard/ckeditor.js"></script>
我是否必须在javascript中添加内容?顺便说一句,控制台没有错误。