我想在tinyMCE的子弹下拉列表中添加一些额外的选项,这可能吗?
我想添加►类型的子弹和不同的颜色选项。 (红色,蓝色等......)
答案 0 :(得分:3)
是。在您的tinyMCE配置中,您需要指定:
style_formats: [
{
title: 'Custom Bullet',
selector: 'ul',
classes: 'custom1'
}
],
从那里,您需要在CSS中指定样式:
.custom1 { list-style-image: url('custom1.png'); }
有关详细信息,请参阅此处:https://www.tinymce.com/docs/configure/content-formatting/#style_formats