问题描述
我要追加一个字符串(img标签),以TinyMCE的编辑器实例。
I need to append a string (an img tag) to a tinyMCE editor instance.
我在做这样的:
$("#textboxhiddenbytinymce").append( string );
tinyMCE.triggerSave();
没有运气。我在想,如果:
with no luck. I was wondering if:
有是用于添加任意的字符串的直接方法(我需要完全控制)在TinyMCE的一个实例,我明白,我做它的方式是错误的,因为工作tinyMCE的向indipendently原始的textarea。
There is a direct method for adding an arbitrary string (I need complete control over it) to an instance of tinyMCE I understand that the way I'm doing it is wrong since tinyMCE works indipendently to the "original" textarea.
非常感谢你!
推荐答案
这将工作的唯一方法是,如果你使用的。幸运的是,可以很容易地将现有tinyMCE.init块使用jQuery转换:
The only way this will work is if you use the jQuery Plugin version. Luckily it's easy to convert an existing tinyMCE.init block to use jQuery:
$().ready(function () {
$('textarea#tinymce').tinymce({
script_url: 'tinymce/jscripts/tiny_mce/tiny_mce.js',
// and all your existing config
});
然后,您可以访问$('#textarea的TinyMCE的')对象的。
希望这回答仍是有用的人的问题被张贴后的一年!
Hope this answer is still helpful to someone a year after the question was posted!
这篇关于追加一个字符串TinyMCE的实例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!