Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的问题是我需要使用 ckeditor 的工具栏来设置文本样式,但我需要限制用户更改内容。
这可能吗?
要设置为只读,请使用 CustomConfig 方法:
CKEDITOR.replace(id,{customConfig :readOnly:true}); Example: <textarea id="editor1">Test</textarea> CKEDITOR.replace('editor1',{width:'700px',readOnly:true});
Js 小提琴演示