jQuery,js实现Iframe自适应高度(兼容多浏览)

阅读更多
// 我们在aa.html里面有个iframe,加载内容为bb.html




方式一
//引入jQuery




方式二
$("#frame_con").load(function(){
    var thisheight = $(this).contents().find("body").height()+30;
    $(this).height(thisheight < 500 ? 500 : thisheight);
});

你可能感兴趣的:(乔乐共享,iframe,自适应,jQuery,高度)