首页 > 其他 > 详细

iframe相关问题

时间:2015-02-03 17:36:03      阅读:197      评论:0      收藏:0      [点我收藏+]

iframe自适应高度

$("#mainFrame").load(function(){
    var height = $(document.getElementById(‘mainFrame‘).contentWindow.document).height() + ‘px‘;
    $("#mainFrame").css("height", height);
    $(document.getElementById(‘mainFrame‘).contentWindow.document).click(function(){
        var height = $(this).height() + ‘px‘;
        $("#mainFrame").css("height", height);
    });
});

子页面获取父页面内容

window.parent.方法名;
window.parent.变量名;

父页面获取子页面内容

window.document.getElementById("mainFrame").contentWindow.方法名;
window.document.getElementById("mainFrame").contentWindow.变量名;


iframe相关问题

原文:http://my.oschina.net/chenhao901007/blog/374908

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!