可以在每個頁面的JS上設定CKeditor的樣式
根據官方網站的說法 用法有兩種
append 跟replace
CKEDITOR.replaceand CKEDITOR.appendTo
根據官方網站的說法 用法有兩種
append 跟replace
CKEDITOR.replaceand CKEDITOR.appendTo
CKEDITOR.appendTo(elementOrId, config, data)
CKEDITOR.appendTo( 'container_id', { /* Configuration options to be used. */ } { height: 600 } );
CKEDITOR.replace(elementOrIdOrName, config)
CKEDITOR.replace('container_id', { height: 600 });
留言