主頁面main.jsp,iframe要設置一個默認高度,防止在chrome打開的iframe高度出現一直增長的狀況chrome
<body> <iframe name=openFrame id="openFrame" scrolling="no" frameborder="no" border="0" class="app-frame" src="/www/com/yc" onLoad="openLoad(this)" style="height:200px;"></iframe> </body>
function openLoad(ifm){ ifm.style.height=$(ifm).contents().outerHeight()+"px"; }