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

跨iframe页面访问元素

时间:2017-11-10 00:22:26      阅读:190      评论:0      收藏:0      [点我收藏+]

标签: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);
}

 

跨iframe页面访问元素

标签:class   bsp   页面   fun   log   top   window   ntb   nload   

原文地址:http://www.cnblogs.com/viva-yue/p/myiframe.html

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