HtmlBox JQuery 插件
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
HtmlBox 有一个可以调用的
set_text(html)
方法。存储您现在的原始 htmlbox 调用:当您有新数据时,调用此方法:
此方法接受 html 并设置
HtmlBox has a
set_text(html)
method you can call. Store the original htmlbox call you have now:When you have new data call this:
This method accepts html and will set your
<textarea>
's value as well.