将工具栏定位到页面顶部

时间:2015-10-25 22:45:25

标签: ckeditor

如何让编辑器工具栏位于上方?我使用内联编辑,如果要在页面结束前滚动网站,则向下传输工具栏。

1 个答案:

答案 0 :(得分:1)

使用sharedspace可以帮助您。 您可以在此处找到类似的问题和解决方案: How to make the inline ckeditor toolbar fixed at the top and not float

插件的实现如下所示:

<div id="toolbarLocation></div>
<div id="editor" contenteditable="true"></div>

<script>

     CKEDITOR.disableAutoInline = true;
     CKEDITOR.replace( 'editor', { 
         sharedSpaces: { 
             top: 'toolbarLocation' 
         } 
     } );

</script>