gpt4 book ai didi

ckeditor - 将 CKEditor Format 插件自定义为一个简单的按钮

转载 作者:行者123 更新时间:2023-12-02 04:42:27 25 4
gpt4 key购买 nike

内置格式插件是可能标签的下拉列表(h1、h2、p、pre..)。标签列表可以在配置文件中轻松配置。

我只使用一个标签,所以下拉菜单只会使工具栏复杂化并影响可用性。

是否可以自定义现有插件或创建一个新插件:

1) 是简单的按钮而不是下拉菜单,带有自定义图标

2) 单击按钮时,会将预定义格式 H1 添加到所选文本

简单地说,工具栏按钮将模拟下拉项选择单击“标题 1”。

最佳答案

据我所知,format 没有为外部调用提供方便的接口(interface),但您可以创建自己的插件。

本质上归结为使用 CKEDITOR.style 对象:

// Creates a style object, 
var styleObj = new CKEDITOR.style( { element: 'pre' } );

editor.applyStyle( styleObj );
// Or if you wish to remove style:
// editor.removeStyle( styleObj );

我创建了简单、全功能的示例插件,名为 myFormat:

( function() {

"use strict";

var pluginName = 'myFormat';

CKEDITOR.plugins.add( pluginName, {
icons: pluginName, // If you wish to have an icon...

init: function( editor ) {
// Tagname which you'd like to apply.
var tag = 'h2',
// Note: that we're reusing.
//style = new CKEDITOR.style( editor.config[ 'format_' + tag ] );
style = new CKEDITOR.style( { element: 'pre' } );

// Creates a command for our plugin, here command will apply style. All the logic is
// inside CKEDITOR.styleCommand#exec function so we don't need to implement anything.
editor.addCommand( pluginName, new CKEDITOR.styleCommand( style ) );

// This part will provide toolbar button highlighting in editor.
editor.attachStyleStateChange( style, function( state ) {
!editor.readOnly && editor.getCommand( pluginName ).setState( state );
} );

// This will add button to the toolbar.
editor.ui.addButton( 'MyFormat', {
label: 'Click to apply format',
command: pluginName,
toolbar: 'insert,5'
} );
}
} );

} )();

把代码放到<ckeditorDirectory>/ckeditor-dev/plugins/myFormat/plugin.js就可以了.

不要忘记修改您的 CKEditor 配置以包含 myFormat 插件,并将一些花哨的图标放置到 <ckeditorDirectory>/ckeditor-dev/plugins/myFormat/icons/myFormat.png .

关于ckeditor - 将 CKEditor Format 插件自定义为一个简单的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20549283/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com