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 フィドルのデモ