HtmlBox JQuery 插件

发布于 2024-08-24 08:12:32 字数 316 浏览 2 评论 0原文

我正在使用 HtmlBox 2.8 (http://remiya.com/cms/projects /jquery-plugins/htmlbox/)
将文本区域转换为富文本编辑器。

当我更改文本区域的值时,$('#Survey_Value').val(data.Value);
Richeditor 中的文本不会改变。

如何更改富文本编辑器中的文本?

I'm using the HtmlBox 2.8 (http://remiya.com/cms/projects/jquery-plugins/htmlbox/)
Turns the textarea to a richtext editor.

when i change the value of the textarea, $('#Survey_Value').val(data.Value);
the text in the richeditor does not change.

how to change the text the text in the rich text editor?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

日裸衫吸 2024-08-31 08:12:32

HtmlBox 有一个可以调用的 set_text(html) 方法。存储您现在的原始 htmlbox 调用:

var box = $('#Survey_Value').htmlbox();

当您有新数据时,调用此方法:

box.set_text(data.Value);

此方法接受 html 并设置

HtmlBox has a set_text(html) method you can call. Store the original htmlbox call you have now:

var box = $('#Survey_Value').htmlbox();

When you have new data call this:

box.set_text(data.Value);

This method accepts html and will set your <textarea>'s value as well.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文