我有几个下拉框,应该在tinyMCE富文本编辑器中的光标位置插入动态文本(根据选择).
我发现很多与上述问题有关的帖子如下所示,目前我的代码无效,也没有在控制台中给出任何错误.
tinyMCE.execInstanceCommand('text',"mceInsertContent",false,"This is the text to be inserted");
// here 'text' is id of textarea on which TinyMCE is rendered
我想当我点击下拉框时,我在文本编辑器中放松了焦点,但我仍然无法解决这个问题.
任何帮助将不胜感激.
解决方法:
需要使用execInstance命令的execCommand,如下所示,
tinyMCE.execCommand('mceInsertContent',false,"This is the text to be inserted");
原因是我使用了tinyMCE旧版本(2X),因此大多数命令都不能使用旧API.