我如何在iframe上获得keydown事件?
解决方法
您需要访问通过ContentWindow对象的iframe文档
$(document.getElementById('IFrameId').contentWindow.document).keydown(function(){ alert('Key down!'); });
确保在加载帧后绑定事件.