检测 TinyMCE 中是否存在插件或命令
TinyMCE 的 API 是否支持一种方法来查找插件是否处于活动状态,或者更好的是查找给定命令是否已注册?具体来说,我正在创建一个插件,希望定期调用 mceAutoResize 命令,但为了做到这一点,我更愿意检测该命令是否存在。我知道我可以通过搜索插件参数来做到这一点,但我想具体知道是否有 API 支持的方式(以限制该插件在 TinyMCE 更新时中断的机会)。
Does TinyMCE's API support a method for finding whether or not a plugin is active, or better, whether a given command is registered? Specifically, I am creating a plugin that would like to call the mceAutoResize command at periods, but in order to do so I would prefer to detect whether the command exists or not. I know I can do this by searching the plugins parameter, but I wanted to know specifically if there is an API-supported way (to limit the chances that this plugin will break on a TinyMCE update).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要查看插件或命令是否处于活动状态,似乎没有真正的 API 功能。您可以做什么来查看插件是否已加载 使用
要检查给定命令(在本例中为 mceAutoResize)是否可用,您可以使用
这在tinymce 中不太可能改变。
To see if a plugin or command is active there seems to be no real API functionality. What you can do to see if a plugin is loaded use
To check if a given command (in this case mceAutoResize) is available you may use
It is not likely that this will ever change in tinymce.