保存多个TinyMCE实例

发布于 2024-11-18 08:42:49 字数 268 浏览 5 评论 0原文

我在一页上有多个 TinyMCE 实例。

我有一个在后台运行的 javascript 自动保存功能,它通过 POST 请求自动将表单保存在数据库中。这对于一种形式效果很好,我可以在 init 中设置元素 ID。然而,在我的场景中,用户可以拥有可变数量的 TinyMCE 表单,因此拥有多个硬编码元素 ID 似乎并不实用。

TL;DR:在不知道实例 ID 的情况下动态抓取同一页面中 TinyMCE 的所有实例。或者,可以使用任何其他方法在一个 auto_save() 函数中保存多个表单。

I have multiple instances of TinyMCE on one page.

I have a javascript autosave running in the background that automatically saves the forms in the database via a POST request. This works good with one form where I can set the element ID in the init. However, in my scenario, the user can have a variable number of TinyMCE forms, so having multiple hardcoded element ID's do not seem practical.

TL;DR: Dynamically grab all instances of TinyMCE in the same page without knowing the instance ID. Or, any other approach to save multiple forms in one auto_save() function.

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

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

发布评论

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

评论(2

彩扇题诗 2024-11-25 08:42:49

布雷特描述的方式是正确的。这是您可以在需要时调用的代码,即在 auto_save() 函数中:

for (var i = 0; i < tinymce.editors.length; i++) {
    // you need to do what is needed here
    // example: write the content back to the form foreach editor instance
    tinymce.editors[i].save();
}

The way Brett decribed is correct. Here is the code you may call whenever needed, i.e. in your auto_save() function:

for (var i = 0; i < tinymce.editors.length; i++) {
    // you need to do what is needed here
    // example: write the content back to the form foreach editor instance
    tinymce.editors[i].save();
}
诺曦 2024-11-25 08:42:49

您可以在 auto_save( ) 功能。

You could iterate through the tinyMCE.editors collection in your auto_save() function.

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