iframe上的keydown事件

pra*_*eep 11 jquery

我如何在iframe上获得keydown事件?

Jam*_*mes 15

您需要访问通过ContentWindow对象的iframe文档

$(document.getElementById('IFrameId').contentWindow.document).keydown(function(){ alert('Key down!'); });
Run Code Online (Sandbox Code Playgroud)

确保加载帧绑定事件.


Ahm*_*med 6

使用JQuery将事件处理程序添加到iframe

$(document.getElementById('iframe_id').contentWindow.document).keydown(function() {
    // my func
});
Run Code Online (Sandbox Code Playgroud)

  • `$("#iframe_id").get(0).contentWindow.document`相当于`$(document.getElementById('iframe_id').contentWindow.document)` (6认同)