您的位置:首页 > 其它

fox与ie的iframe 的document事件

2008-09-19 11:36 656 查看
<div style="width: 100px; height: 100px">main
    </div>
    <div style="width: 528px; height: 292px">iframe
    <iframe src="iframe.htm"></iframe>
</div>
<script>
document.onkeydown = function(){alert(100)};
var iframes = document.getElementsByTagName("iframe");
if ( isIE )
iframes[0].contentWindow.document.onkeydown = function(){alert(200)};
if ( isFox )
iframes[0].contentWindow.onkeydown = function(){alert(200)};
</script>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  iframe ie function div