我在我的项目中使用 CKEditor,我需要在页面上打印 ckeditor 内容,所以我想限制 ckeditor 的高度,所以我将高度设置为 220px 并使用溢出删除滚动条:隐藏,但是当用户转到 ckeditor 区域的末尾并按回车键,内容增加而没有滚动条选项。
有什么方法可以限制ckeditor中的内容行数吗?
下面是我的ckeditor代码:
CKEDITOR.replace('summaryEditor',
{
toolbar:
[
{ name: 'customToolBar', items: ['Bold', 'Italic', 'Underline', 'JustifyLeft', 'JustifyCenter', 'Font', 'FontSize', 'NumberedList', 'BulletedList', 'Link', 'Image', 'Table', 'Source', 'questions'] }
],
height: '220px',
resize_enabled: false,
contentsCss: 'body {overflow:hidden;}',
autoGrow_onStartup: false,
extraPlugins: 'questions',
removePlugins: 'elementspath'
});