我的页面上有TinyMCE v4和Text Color插件,我想将backcolor或frontcolor按钮的默认设置更改为黑色以外的其他颜色。我的编辑器默认为白色背景上的黑色文本,我的用户需要突出显示功能。背景色按钮可以正常工作,但是如果我单击按钮而不先选择其他颜色,则默认背景为白色。这样会导致UX效果不佳,并且最终是一个非常无用的默认值。
如何将TinyMCE中的背景色按钮更改为其他默认颜色,以便用户每次在应用程序中加载新页面时都可以避免几次额外的点击?
我的TinyMCE初始化配置为:
{
statusbar: false,
plugins: "autoresize textcolor",
toolbar1: "formatselect | bold italic forecolor backcolor | alignleft aligncenter alignright alignjustify | numlist bullist outdent indent | removeformat",
autoresize_min_height: 80,
autoresize_max_height: 400,
autoresize_bottom_margin: 0,
}
Text Color Plugin的文档最终没有提及设置默认值的方法,但是我希望有人能够知道我要完成的工作,尽管没有受支持的方法。