您的当前位置:首页>全部文章>文章详情

ckeditor设置禁止编辑

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