本文介绍了iframe上的keydown事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我如何在iframe上获得按键事件?
How i can get keydown event on iframe?
推荐答案
您需要通过ContentWindow对象访问iframe的文档
You need to access the document of the iframe which is through the ContentWindow object
$(document.getElementById('IFrameId').contentWindow.document).keydown(function(){ alert('Key down!'); });
确保在加载框架后 绑定事件.
Make sure you bind the event after the frame has loaded.
这篇关于iframe上的keydown事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!