我正在尝试构建一个小的插件,以将类添加到CKEditor中的特定标签。这是应该执行的操作:如果用户正在创建列表,则无论他在列表中的什么位置,如果他单击按钮,都会为ul
父级添加一个类。
我设法检测到该标签。但是,我找不到如何添加类,主要是之后如何应用这些更改。这是我现在所拥有的:
editor = CKEDITOR.replace('editor');
editor.addCommand("testCommand", {
exec: function(e) {
parents = e.elementPath();
parents = parents.elements;
for (i = 0; i < parents.length; i++) {
console.log('Check');
if(parents[i].getName() == 'ul') {
console.log('List !');
return true;
}
}
}
});
editor.ui.addButton('testButton', {
label: "Test button",
command: 'testCommand',
toolbar: 'insert',
icon: 'Link'
});
你能帮忙吗?
答案 0 :(得分:1)
这里是JSFiddle。
CKEDITOR.addCss('ul.myclass { font-weight: bold; }'); // <-- CSS class declaration
const editor = CKEDITOR.replace('editor', {
toolbar: [
{ name: 'paragraph', items: [ 'Source', 'BulletedList', 'testButton' ] }
],
extraAllowedContent: 'ul(myclass)' // <-- needed for Advanced Content Filtering (ACF)
});
editor.addCommand("testCommand", {
exec: function(e) {
let parents = e.elementPath();
parents = parents.elements;
for (let i = 0; i < parents.length; i++) {
console.log('Check');
if (parents[i].getName() == 'ul') {
console.log('Liste !');
parents[i].addClass('myclass'); // <-- adds the CSS class
break;
}
}
}
});
editor.ui.addButton('testButton', {
label: "Test button",
command: 'testCommand',
toolbar: 'insert',
icon: 'Link'
});