我想将一个keydown事件处理程序分配给iframe.类似纯JS的东西:
document.getElementById('iframe_id').contentWindow.addEventListener('keydown',funcName, true);
我试过了:
$(document.getElementById('iframe_id').contentWindow).keydown( function() { // my func });
但它不起作用..请帮忙!
contentWindow
是iframe
的window
对象.你想要的iframe
是document
:
$(document.getElementById('iframe_id').contentWindow.document).keydown(function() { // my func });
请注意,我不确定jQuery如何对来自其他窗口/框架的元素做出反应.