Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我基本上是在寻找一种将自定义键盘快捷键添加到 EpicEditor 的方法。
假设我想在按 CTRL+ENTER 时运行自定义 javascript 函数。
我也尝试过使用捕鼠器,但它在编辑器本身内不起作用。
谢谢!
var editor = editor.getElement('editor'); editor.addEventListener('keydown', function (e) { if (e.keyCode == 13 && e.ctrlKey) { alert('test'); } });