我需要使用tinyMCE为所选文本添加h1标记。我使用以下代码
tinymce.init({
selector:"td",
inline: true,
menubar:false,
statusbar: false,
branding: false,
browser_spellcheck: true,
toolbar: 'undo redo bold italic | formatselect fontselect fontsizeselect | forecolor backcolor | alignleft aligncenter alignright | superscript subscript | bullist numlist | link | code',
plugins: ['code','textcolor','link']
});
答案 0 :(得分:0)
您需要编写自己的TinyMCE插件才能实现此目的。看一看TinyMCE关于主题的文档(https://www.tinymce.com/docs/advanced/creating-a-plugin/)和关于获取所选文本的问题(Get the Highlighted/Selected text)