当焦点在IFRAME里时,onkeydown不管用,请问该怎么办
庄子 2009-07-21 11:18:32 我在一个页面调用了ONKEYDOWN如下, 其中这里面有<iframe src="test.php" width="100%" height="550" frameborder="0" scrolling="yes" allowtransparency="true" style="margin:0;padding:0" ></iframe>
当焦点在iframe里时,document.onkeydown将不起作用
function document.onkeydown(){
if (window.event.altKey || event.keyCode==115||window.event.ctrlKey ||window.event.shiftKey){
alert("系统不支持你使用热键!");
event.returnValue=false;
}
if (window.event.altKey && event.keyCode==115){
alert("系统不支持你使用热键!");
event.returnValue=false;
}
}