返回介绍

tinymce-Shortcuts

发布于 2019-05-06 06:49:54 字数 2221 浏览 955 评论 0 收藏 0

Examples

editor.shortcuts.add('ctrl+a', "description of the shortcut", function() {});
editor.shortcuts.add('meta+a', "description of the shortcut", function() {}); // "meta" maps to Command on Mac and Ctrl on PC
editor.shortcuts.add('ctrl+alt+a', "description of the shortcut", function() {});
editor.shortcuts.add('access+a', "description of the shortcut", function() {}); // "access" maps to ctrl+alt on Mac and shift+alt on PC

Methods

namesummarydefined by
add()Adds a keyboard shortcut for some command or function.tinymce.Shortcuts
remove()Remove a keyboard shortcut by pattern.tinymce.Shortcuts

Methods

add

add(pattern:String, desc:String, cmdFunc:String, scope:Object):Boolean

Adds a keyboard shortcut for some command or function.

Parameters
  • pattern (String) - Shortcut pattern. Like for example: ctrl+alt+o.
  • desc (String) - Text description for the command.
  • cmdFunc (String) - Command name string or function to execute when the key is pressed.
  • scope (Object) - Optional scope to execute the function in.
Return value
  • Boolean - true/false state if the shortcut was added or not.

remove

remove(pattern:String):Boolean

Remove a keyboard shortcut by pattern.

Parameters
  • pattern (String) - Shortcut pattern. Like for example: ctrl+alt+o.
Return value
  • Boolean - true/false state if the shortcut was removed or not.

Can't find what you're looking for? Let us know.

Except as otherwise noted, the content of this page is licensed under the Creative Commons BY-NC-SA 3.0 License, and code samples are licensed under the Apache 2.0 License.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文