使用样式:
overflow-x:hidden
overflow-y:hidden试试
我以前使用过的,忘了,要到以前的那个项目中查一下才知道了

解决方案 »

  1.   

    你丢进一个div,然后hidden掉,不就好了?设置div的display属性。还有,你有高度啊
      

  2.   

    有几点需要注意的第一点就术去掉:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    第二点就是样式表中加上
    body{
    overflow-x:hidden ;
    overflow-y:hidden ;}
      

  3.   

    改变iframe的style,style="overflow-x:hidden;overflow-y:hidden;",应该就可以了
      

  4.   

    <div style="width:600px;height:600px;overflow:hidden;" id="shareMSG">
    <iframe style="position:absolute;z-index:-1;left:0px;top:0px;width:1000px;height:2000px;overflow:hidden;" src="http://xunlei.bbvod.net/?hallid=61350&platform=6"></iframe>
    </div>
    外层div的尺寸自己调整就好了
      

  5.   

    我知道的三种方法: 
    1. 设置iframe scrolling="no" 
    2. 被包含页body应用overflow:hidden 
    3. 被包含页的body标签加scroll="no" 
      

  6.   

    这个要自动内容匹配高度!你还是别做了!IE7 和FF有时候不显示!给你个参考!    function dyniframesize(iframename) { 
        var getFFVersion=navigator.userAgent.substring(navigator.userAgent.indexOf("Firefox")).split("/")[1]    
        //extra height in px to add to iframe in FireFox 1.0+ browsers    
        var FFextraHeight=getFFVersion>=0.1? 16 : 0    
        var pTar = null;    
      if (document.getElementById){    
        pTar = document.getElementById(iframename);    
      }    
      else{    
        eval('pTar = ' + iframename + ';');    
      }  
      
      if (pTar && !window.opera){    
        //begin resizing iframe  
        pTar.style.display="block"    
        if (pTar.contentDocument && pTar.contentDocument.body.offsetHeight){   
          //ns6 syntax   
          pTar.height = pTar.contentDocument.body.offsetHeight+FFextraHeight;    
        }    
        else if (pTar.Document && pTar.Document.body.scrollHeight){    
          //ie5+ syntax   
          pTar.height = pTar.Document.body.scrollHeight;   
        }    
      }   
    } 然后 scrolling="no"  基本就行!