请帮助我使用addShortcut()函数为项目符号和数字列表添加键盘快捷键。
Ctl + N代表号码清单
Ctl + R项目符号列表
最佳答案
在这里,您需要在插件中包含的代码:
ed.addShortcut('ctrl+n', 'OrderedList', function(){
ed.execCommand('InsertOrderedList');
});
ed.addShortcut('ctrl+r', 'UnorderedList', function(){
ed.execCommand('InsertUnorderedList');
});
关于javascript - 如何在tinyMCE中添加项目符号和数字列表键盘快捷键?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32308985/