在 tinyMCE 工具栏上配置用户的默认选择
Configure the user's default choice on tinyMCE toolbar
我正在使用 TinyMCE v5。默认情况下,所选样式为 'Paragraph',如此图所示:
[tinyMCE toolbar, as the user sees before he mades any format configuration]
但我知道我的用户都会更喜欢使用 'Div' 风格。所以我想默认选择 'Div' 。因此,工具栏应该如下图所示:
[tinyMCE toolbar, as I want it to be configured by default]
可能吗?
我没有在 tinyMCE documentation 中找到我的答案。
同样的问题,如果你想默认选择“粗体”按钮等。
谢谢!
要用 <div>
替换默认的 <p>
块,请使用 forced_root_block:https://www.tiny.cloud/docs-3x/reference/Configuration3x/Configuration3x@forced_root_block/
tinymce.init({
// ...
forced_root_block : 'div'
});
默认为select粗体按钮,可以使用execCommand
:https://www.tiny.cloud/docs/api/tinymce/tinymce.editor/#execcommand
tinymce.init({
// ...
setup: function(editor) {
editor.on('init', function() {
this.execCommand('Bold');
});
}
});
示例 fiddle 结合两者:https://fiddle.tiny.cloud/YShaab/1
我正在使用 TinyMCE v5。默认情况下,所选样式为 'Paragraph',如此图所示: [tinyMCE toolbar, as the user sees before he mades any format configuration]
但我知道我的用户都会更喜欢使用 'Div' 风格。所以我想默认选择 'Div' 。因此,工具栏应该如下图所示: [tinyMCE toolbar, as I want it to be configured by default]
可能吗? 我没有在 tinyMCE documentation 中找到我的答案。 同样的问题,如果你想默认选择“粗体”按钮等。
谢谢!
要用 <div>
替换默认的 <p>
块,请使用 forced_root_block:https://www.tiny.cloud/docs-3x/reference/Configuration3x/Configuration3x@forced_root_block/
tinymce.init({
// ...
forced_root_block : 'div'
});
默认为select粗体按钮,可以使用execCommand
:https://www.tiny.cloud/docs/api/tinymce/tinymce.editor/#execcommand
tinymce.init({
// ...
setup: function(editor) {
editor.on('init', function() {
this.execCommand('Bold');
});
}
});
示例 fiddle 结合两者:https://fiddle.tiny.cloud/YShaab/1