在tinyMCE富文本编辑器中的光标位置插入文本

时间:2014-07-30 07:19:56

标签: javascript html tinymce

我有几个下拉框,应该在tinyMCE富文本编辑器的光标位置插入动态文本(根据选择)。

我发现很多与上述问题相关的帖子如下所示,目前我的代码无效,也没有在控制台中出现任何错误。

tinyMCE.execInstanceCommand('text',"mceInsertContent",false,"This is the text to be inserted");
// here 'text' is id of textarea on which TinyMCE is rendered

我想当我点击下拉框时,我在文本编辑器中放松了焦点,但我仍然无法修复它。

任何帮助都会表示赞赏。

1 个答案:

答案 0 :(得分:4)

如下所示,需要使用execCommand代替execInstanceCommand

tinyMCE.execCommand('mceInsertContent',false,"This is the text to be inserted");

原因是我使用了tinyMCE旧版本(2X),因此大多数命令都不能使用旧API。