CKeditor設定編輯區填充內容,並設定不可編輯
頁面部分程式碼
<textarea id="s_textContent" name="s_textContent"></textarea>
CKeditor替換文字域
CKEDITOR.replace('s_textContent',{ height: '240px', width: '80%' });
設定編輯區內容
CKEDITOR.instances.s_textContent.setData("hello world!");
設定編輯區域不可編輯
CKEDITOR.instances.s_textContent.setReadOnly(true);