0
我在我的項目中使用CKEditor,我有要求在頁面上打印ckeditor內容,所以我想限制ckeditor的高度,所以我給高度爲220px和使用溢出刪除滾動條:隱藏,但是當用戶去ckeditor區域結束並按下輸入時,內容增加而沒有滾動條選項。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'
});