Adjust width and height of iframe to fit with content in it

前端 未结 30 2746
旧时难觅i
旧时难觅i 2020-11-22 02:09

I need a solution for auto-adjusting the width and height of an iframe to barely fit its content. The point is that t

30条回答
  •  耶瑟儿~
    2020-11-22 02:57

    Simplicity :

    var iframe = $("#myframe");
    $(iframe.get(0).contentWindow).on("resize", function(){
        iframe.width(iframe.get(0).contentWindow.document.body.scrollWidth);
        iframe.height(iframe.get(0).contentWindow.document.body.scrollHeight);
    });
    

提交回复
热议问题