使用ckeditor 4(内联模式)时出现问题。我可以点击一个div并编辑它,但我不能按空格键。请告诉我如何解决这个问题。
这是我的代码
<div id="editor1" contenteditable="true">
<h1>Inline Editing in Action!</h1>
<p>The "div" element that contains this text is now editable.
</div>
<script>
// Turn off automatic editor creation first.
CKEDITOR.disableAutoInline = true;
CKEDITOR.inline( 'editor1' );
</script>
答案 0 :(得分:0)
我有同样的问题,经过数小时的研究发现 jquery.hotkeys.js 导致了这个问题。
尝试删除对jquery热键的任何引用,看看它是否有效,