无法按空格键CKEDITOR内联

时间:2014-10-16 07:11:05

标签: javascript jquery html ckeditor spaces

使用ckeditor 4(内联模式)时出现问题。我可以点击一个div并编辑它,但我不能按空格键。请告诉我如何解决这个问题。 enter image description here

这是我的代码

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

1 个答案:

答案 0 :(得分:0)

我有同样的问题,经过数小时的研究发现 jquery.hotkeys.js 导致了这个问题。

尝试删除对jquery热键的任何引用,看看它是否有效,