保存多个TinyMCE实例
我在一页上有多个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
布雷特描述的方式是正确的。这是您可以在需要时调用的代码,即在 auto_save() 函数中:
The way Brett decribed is correct. Here is the code you may call whenever needed, i.e. in your auto_save() function:
您可以在 auto_save( ) 功能。
You could iterate through the tinyMCE.editors collection in your auto_save() function.