我需要创建一个没有滚动条的frameborder=0
iframe。
它需要根据浏览器窗口的当前宽度自动调整其宽度。
它的高度需要基于document.length
。因此,如果它是一个长页面,iframe需要延长。
这样,iframe中就没有创建滚动条。
答案 0 :(得分:1)
var myIframe = $(document.frames['idIframe']);
$(document).bind('resize', function() {
myIframe.attr("width", $(this).width());
myIframe.attr("height", $(this).height());
});
答案 1 :(得分:0)
This question here可能有您正在寻找的答案......