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

Iframe内部页面高度赋值于其父页面的Iframe标签

时间:2020-03-20 21:55:52      阅读:52      评论:0      收藏:0      [点我收藏+]

标签:row   ram   parent   标签   父页面   att   css   article   ica   

Iframe内部页面高度赋值于其父页面的Iframe标签,使得该Iframe不存在滚动条,布遮盖子页面的内容:

$(‘#crowdfunding_iframe‘,parent.document).attr("height",$(document.body).height());

var height = $(document.body).height() + 30;
if(height < 600){
    height = 600;
}
$(‘#crowdfunding_iframe‘,parent.document).attr("height",height);
$(‘#vertical_navigation‘,parent.document).css("height",height);

Iframe内部页面高度赋值于其父页面的Iframe标签

标签:row   ram   parent   标签   父页面   att   css   article   ica   

原文地址:https://www.cnblogs.com/baimeishaoxia/p/12535028.html

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