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.
我尝试使用 Redactor JS 在文本中添加一个@ 符号,但它似乎是一个快捷键,所以它对我不起作用,什么也没有出现。我可以在“代码模式”中输入它,但不能在“编辑器模式”中输入您是否有想法覆盖此错误?
我是法国人,所以我使用 ALT Gr + 0 ,这也是 à 和 @ 的关键
谢谢
问题已解决:
这个问题来自快捷键 ALT Gr + 0
我在 redactor.js 中找到第 1766 行,我通过添加 RETURN 来绕过条件,以避免阻止我的 @的 e.preventDefault() 。
代替 :
if (key === 48) this.shortcutsLoadFormat(e, 'p'); // ctrl + alt + 0
经过 :
if (key === 48) 返回;