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

iframe auto set height

时间:2015-02-02 14:02:50      阅读:74      评论:0      收藏:0      [点我收藏+]

标签:

Parent page:
document.domain = ‘xxxx.com‘
function fixIframeHeight(h,iframe){
    $(iframe).height(h);
}



Iframe page:

document.domain = ‘xxxx.com‘
console.log(‘reset header iframe height!!‘);
window.onload = function(){
parent.fixIframeHeight(document.documentElement.scrollHeight,‘#headeriframe‘);
}
window.onresize = function(){
parent.fixIframeHeight(document.documentElement.scrollHeight,‘#headeriframe‘);
}

iframe auto set height

标签:

原文地址:http://www.cnblogs.com/lzf0514/p/4267510.html

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