0

我的问题是我需要使用 ckeditor 的工具栏来设置文本样式,但我需要限制用户更改内容。

这可能吗?

4

1 回答 1

0

要设置为只读,请使用 CustomConfig 方法:

CKEDITOR.replace(id,{customConfig :readOnly:true});

Example: 
         <textarea id="editor1">Test</textarea>
         CKEDITOR.replace('editor1',{width:'700px',readOnly:true});

Js 小提琴演示

于 2013-10-09T09:01:02.307 回答