日期:2014-05-17 浏览次数:20462 次
<iframe id="mainFrame" frameborder="0" height="100%;" marginheight="0" marginwidth="0" name="mainFrame" src="<% = MainURL %>" width="100%"></iframe>
------解决方案--------------------
<iframe id="mainFrame" frameborder="0" height="100%;" marginheight="0" marginwidth="0" name="mainFrame" src="<% = MainURL %>" width="100%"></iframe>
------解决方案--------------------
//js实现div自适应高度
$(window).bind("load", _setMenuHeight);
$(window).bind("resize", _setMenuHeight);
var leftHeigthFirst = $("#left").height();
function _setMenuHeight() {
if (leftHeigthFirst < $("#right").height()) {
$("#left").height($("#right").height());
$("#middle").height($("#left").height());
}
else {
$("#right").height($("#left").height());
$("#middle").height($("#right").height());
}
$("#body").attr("scroll", "yes");
}
</script>
通过JS可以自适应高度来解决。