Textarea编辑Redactor。使用jQuery插入值

时间:2013-10-25 12:47:03

标签: jquery redactor

有字段textarea id="tr" 使用HTML编辑器Redactor最新版本 试图准确设置字段的值,它在API Doc:

中有描述
$('#tr').redactor('insertText', 'text'); 

$('#tr').redactor('insertHtml', 'text');

我做错了什么?

2 个答案:

答案 0 :(得分:22)

试试set API,我认为这是insertText / insertHtml的较低级版本。

所以在你的例子中,它应该是:

$('#tr').redactor('set', 'Your text goes here');

更新:在redactor版本10(及更高版本)中,已更改set方法的名称,如文档here所示:

$('#tr').redactor('code.set', 'Your text goes here');

答案 1 :(得分:0)

此代码非常适合销毁,然后更新为新代码。

$('#redactor_subcontentid').destroyEditor();
// set it to new 
$('#redactor_subcontentid').redactor().setCode("Your Text");