当我在TinyMCE中选择Bold时,我想让它使用不同的字体而不是仅使用当前字体的粗体变体 - 我该怎么做?
答案 0 :(得分:0)
查看粗体文字的源代码,可以标记为
<strong>, <b>, <span style="*"> or else
取决于您的Tiny Instance的设置。
当您知道这一点时,您应该能够在编辑器样式表中设置字体。
例如
p strong{
font-weight:400;
font-family: ...;
}
答案 1 :(得分:0)
// get the current editor
var editor = tinyMce.activeEditor;
// get the editor formatter
var f = editor.formatter;
f.register('customBold', {
inline: 'span',
selector: 'span,p',
styles: { fontWeight: 'bold',fontFamily: 'arial'.....your custom style },
});
editor.addCommand('customBold',function(){
editor.applyFormat(name)
});
// add a button in the toolbar
editor.addButton(customBtn, {
tooltip: 'My custom bold',
icon: 'bold',
cmd: customBold
});