1
dong3580 2014-11-08 19:43:01 +08:00
正巧前端时间被这玩意折磨的,
这样呢? <iframe id="id1" width="100%" height="100%" frameborder="0" scrolling="NO"> </iframe> |
3
dong3580 2014-11-08 19:54:58 +08:00 1
给你写个高度出现这种情况的办法,宽度以此类推:
被嵌套页面加上 $('#id1', window.parent.document).css("height",window.screen.height-80); 适当时候被嵌套页面加入触发: function WindowNewHeight(){ var height=$("#div1").height()+220;//div1为被嵌套页面的一个div1 $("#id1",window.parent.document).height(height);//id1为iframe id } 每个事件加入判断 |
5
kmvan 2014-11-08 22:34:35 +08:00
FF 没看到横向滚动条
|