如何在不使用JQuery的情况下让CKEditor更新文本内容?

发布于 2024-11-19 09:41:17 字数 245 浏览 2 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

昇り龍 2024-11-26 09:41:17

尝试将此函数添加到页面并在按钮的 onclick 上调用它。它将使用 ckeditor 的值更新文本区域

function UpdateFields() {
    for (instance in CKEDITOR.instances) {
        CKEDITOR.instances[instance].updateElement();
    }
}

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

function UpdateFields() {
    for (instance in CKEDITOR.instances) {
        CKEDITOR.instances[instance].updateElement();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文