我为 Drupal 9 创建了一个自定义插件,该插件在 Drupal 9 站点上运行。
我的 ckeditor 插件可以工作,但我需要检测在用户积极使用 ckeditor 窗口时使用的箭头键的出现。我正在使用以下代码:
(function ($, Drupal, CKEDITOR) {
CKEDITOR.plugins.add('my_ckeditor_plugin', {
icons: 'icon',
init: function (editor) {
console.log('testing ...')
addEventListener('keydown', function(event) {
console.log(event)
})
}
});
}) (jQuery, Drupal, CKEDITOR);
该代码有效,但仅在未选择 ckeditor 窗口时有效。IE 当我不使用 ckeditor 时检测到我的击键。当我选择 ckeditor 并主动输入时,未检测到我的击键。
我究竟做错了什么?