我有一个可以在顶部窗口内生长的iframe。
我想通过在iframe增长时增加iframe的高度来阻止iframe拥有滚动条,从而防止垂直滚动条。可能的?
答案 0 :(得分:1)
您可以访问所需的iframe元素。
iframe = $('#myiFrame');
iframe_document = iframe .contents().find('body').parent(); // this one looks little weird, but i can't think of better solution
iframe_document_height = iframe_document.height();
iframe_height = iframe.height();