如何让编辑器工具栏位于上方?我使用内联编辑,如果要在页面结束前滚动网站,则向下传输工具栏。
答案 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>