如何在contenteditable iframe中获得keydown事件目标?

时间:2017-01-08 09:52:42

标签: javascript iframe

当我在iframe的contenteditable中获得keydown事件目标时,它始终是正文。在这种情况下如何获得实际目标?

我尝试在iframe加载后绑定keydown事件,或者只是在控制台中编写代码来手动绑定事件,但都失败了。

$('#ueditor_0').contents().keydown(e => console.log(e.target));

$(document.getElementById('ueditor_0').contentDocument).keydown(e => console.log(e.target));

它们都不起作用。

0 个答案:

没有答案