基本上我试图获得一系列<的高度。 iframes>在我的页面上专门应用高度< iframe>所以没有滚动条。我在这里遇到了十几个问题,但没有一个能正常工作。我目前使用以下代码:
$('#connectors_display').find('iframe.iframe_render').each(function() {
var current_iframe = $(this);
$(current_iframe).load(function() {
var iframe_height_body = $(current_iframe).contents().find('body').height();
var iframe_height_html = $(current_iframe).contents().find('html').height();
var iframe_height
if (iframe_height_body > iframe_height_html){
iframe_height = iframe_height_body
}
else {
iframe_height = iframe_height_html
}
$(current_iframe).height(iframe_height);
});
});
一些注意事项:
以下是我正在处理的网站:
http://fancentric.org/cc/highlights/?open=tab_contentconnectors
提前谢谢。