ckeditor设置禁止编辑
发表于:2023-04-17 11:06:29浏览:680次
/*! 加载扩展插件 */
require(['ckeditor', 'angular'], function () {
window.createEditor('[name="content"]', {height: 200});
$('[name="content"]').on('editor.init', function (event, myEditor) {
myEditor.enableReadOnlyMode( '[name=content]' );
});
})