luoluonozuoluo:
隐藏帧是什么意思啊?就是<iframe么?

解决方案 »

  1.   

    它其实还是一个DIV,只是内嵌了个<IFRAME>
    你在它边框上点右键看属性就可以看到,它的地址和主页是一样的,而中间确是另外一页面
    所以肯定是内嵌的IFRAME
      

  2.   

    <html><body>
    <p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p<p>p
    <iframe id=f style="position:absolute;z-index:1" src="http://www.google.com"></iframe>
    <script language="javascript">
    document.body.onscroll=function (){
    var f=document.getElementById("f");
    f.style.left=(document.body.clientWidth- f.clientWidth)+"px";
    f.style.top=(document.body.scrollTop+document.body.clientHeight- f.clientHeight)+"px";
      }
    </script>
    </body></html>