有效的是不是iframe页内元素有滚动条
<iframe scrolling="no" width="200" height="300" src="http://www.baidu.com">

解决方案 »

  1.   

    有可能是子页面"web/login.htm"的width或者height比iframe的width或者height大。
      

  2.   

    <iframe scrolling="no" width="200" height="300" src="web/login.htm">
    改成
    <iframe scrolling="yes" width="200" height="300" src="web/login.htm">
      

  3.   

    <iframe scrolling="no" width="200" height="300" src="web/login.htm">
    把width height的大小调整一下试试
      

  4.   

    <div id="leamain">       <iframe src="#" marginheight="0" marginwidth="0" frameborder="0" scrolling="no" width="765" height=100% id="iframepage" name="iframepage" onLoad="iFrameHeight()" ></iframe><script type="text/javascript" language="javascript">    function iFrameHeight() {        var ifm= document.getElementById("iframepage");        var subWeb = document.frames ? document.frames["iframepage"].document :ifm.contentDocument;            if(ifm != null && subWeb != null) {            ifm.height = subWeb.body.scrollHeight;            }    }</script>      </div>以上亲测,ie、火狐、谷歌等浏览器均没问题,希望对你有用。