码迷,mamicode.com
首页 > 其他好文 > 详细

iframe 的基本操作

时间:2015-07-08 00:18:12      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

1、iframe 下操作父页面
window.parent.document.getElementById //全部支持
window.top //最顶层
ie 下的iframe的onload事件只能用在绑定的形式

2、父页面下操作iframe
oIframe.contentWindow //iframe 的window 全部支持
oIframe.contentDocument //iframe 的window ie6、7下不支持

3、防钓鱼(判断window.top.location.href==window.location.href)
4、iframe 高度自适应
function changeHeight(){
setTimeout(function(){
oIframe.height=oIframe.contentWindow.document.body.offsetHeight;
},100)
}

iframe 的基本操作

标签:

原文地址:http://www.cnblogs.com/liujin0505/p/4628762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!