iframe相关问题

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相关问题)