如何在不使用JQuery的情况下让CKEditor更新文本内容?
我正在使用 CKEditor 作为邮箱。在编辑器中输入内容后,我需要单击发送按钮。单击邮件后,邮件消失,但没有我输入的内容。
这是因为 CKEditor 不会更新内容的值,直到我选择键入的文本并从工具栏执行一些操作(如粗体、斜体等)。
我已添加一个 javascript: onclick 到发送按钮并尝试重新加载编辑器或从工具栏执行一些操作。
我既不能使用 JQuery 也不能使用任何插件来解决这个问题。为此我还能尝试什么?
I am using CKEditor for mailbox. After typing the content in the editor, I need to click on send button. After clicking the mail goes, but without the content that I have typed in it.
This is because the CKEditor is not updating the value of content until I select the typed text and perform some operation from the toolbar, like Bold, Italic etc.
I have added a javascript: onclick to the send button and trying to reload the editor or perform some operation from toolbar .
Neither I can use JQuery nor any plugin to solve this. What else can I try for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将此函数添加到页面并在按钮的 onclick 上调用它。它将使用 ckeditor 的值更新文本区域
Try adding this function to the page and call it on the onclick of the button. It'll update the textarea's with the value of the ckeditor