在提交之前从 fckeditor 设置表单值

发布于 2024-11-02 14:21:04 字数 190 浏览 2 评论 0原文

我正在尝试修复网站上使用 javascript 验证字段的表单。

某些字段正在使用 fckeditor,事实证明,直到按下提交按钮才设置表单字段值 - 使我的表单验证毫无用处。

我想要做的是(希望)只调用 fckeditor 中的一个方法来更新它所绑定的表单值。

有谁知道这样的方法吗?

谢谢, 约翰.

I'm trying to fix a form on a site that uses javascript to validate the fields.

Some fields are using fckeditor, and it turns out that the form field values aren't set until the submit button is pressed - rendering my form validation useless.

What I want to do is (hopefully) just call a method in fckeditor to update the form values it's tied into.

Does anyone know of such a method?

Thanks,
John.

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

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

发布评论

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

评论(1

南街九尾狐 2024-11-09 14:21:04

文档位于 FCKeditor 2.x / 开发人员指南 / JavaScript API

FCKeditorAPI.GetInstance('InstanceName').UpdateLinkedField()

CKEditor 的 来自 使用 jQuery 从 CKEditor 的 iframe 中抓取内容

for ( instance in CKEDITOR.instances )
            CKEDITOR.instances[instance].updateElement();

Documentation at FCKeditor 2.x / Developers Guide / JavaScript API

FCKeditorAPI.GetInstance('InstanceName').UpdateLinkedField()

for CKEditor from Using jQuery to grab the content from CKEditor's iframe

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