cleditor添加文本光标位置textarea

时间:2013-05-12 21:29:45

标签: text cursor position add cleditor

我正在使用clEditor控件,当我在select控件中选择一个项目时,我需要在textarea中的光标位置添加文本。

有人可以帮助我。

谢谢!

1 个答案:

答案 0 :(得分:1)

此代码将在光标位置添加变量text_to_add的文本:

var text_to_add = 'Welcome to Senegal !';
var editor = $('.my_textarea').cleditor()[0];
editor.focus();
setTimeout(function() {
    editor.execCommand('inserthtml', text_to_add, false);
}, 0);