标签:class bsp 页面 fun log top window ntb nload
// 父页面访问iframe子页面 // 标准浏览器 document.getElementById("iframe1").contentDocument.getElementById("div1").style.background = ‘red‘; window.frames[‘iframe1‘].document.getElementById("div1").style.background = ‘red‘; // IE专用 document.frames[‘iframe1‘].document.getElementById("div1").style.background = ‘red‘; window.frames[‘iframe1‘].document.getElementById("div1").style.background = ‘red‘; // iframe子页面访问父页面 parent.document.getElementById("div1"); // 多级iframe需用top top.document.getElementById("div1"); // iframe高度自适应 document.getElementById(ifr_Id).onload = function () { var ifrHeight = window.frames[ifr_Id].document.body.offsetHeight; this.style.height = ifrHeight + ‘px‘; $(This).parent().height(ifrHeight); }
标签:class bsp 页面 fun log top window ntb nload
原文地址:http://www.cnblogs.com/viva-yue/p/myiframe.html