我已经配置了一个无工具栏和CKEditor的ReadOnly实例,以在网页上显示格式化的HTML。
这与CKEditor的V3.5配合使用:
<script language="javascript" type="text/javascript">
$('.CKEditorRTE').ckeditor(function () { }, { readOnly: true, toolbar: 'ReadOnly',toolbarStartupExpanded: false, toolbarCanCollapse: false, toolbar_Custom: [],uiColor: '#edeff1', resize_minHeight : 100, height: 125, resize_minWidth : 100, width: 600 })
</script>
使用V4.4.5进行格式化,除非我在&#34; Config.js&#34;中添加以下内容:
config.toolbar_ReadOnly = [{items: ['Format']}];
现在我实际上不想要这个格式图标,但我确实想要预先格式化的文本。那么如何使用CKEditor 4.4.5
预先格式化HTML文本而没有工具栏图标呢?