gpt4 book ai didi

jquery - 文本区域编辑器 Redactor。使用 jQuery 插入值

转载 作者:行者123 更新时间:2023-12-03 22:34:56 31 4
gpt4 key购买 nike

有字段文本区域id="tr"使用 HTML 编辑器 Redactor 最新版本尝试按照 API 文档中的描述准确设置字段的值:

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

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

我做错了什么?

最佳答案

如果你使用的是旧版本的redactor,你可以尝试set API,我认为它是insertText的较低版本。/insertHtml .

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

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

更新(2015-04-21):在 redactor v2 中,set 方法的名称已更改:

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

另一个更新 (2020-04-20):在最新版本中,Imperavi changed their syntax并提供了两种实现此解决方案的方法:

const editor = $R('#tr');
editor.source.setCode('Your text goes here');

$R('#tr', 'source.setCode', 'Your text goes here');

关于jquery - 文本区域编辑器 Redactor。使用 jQuery 插入值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19590297/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com