之前在论坛里讨论过了,用iframe的话没有什么好办法。不过你可以用object标签。
像下面这样<object data="http://......">

解决方案 »

  1.   

    <object data="http://......"> 
    这样同样跳转.....查看了下引用页面的情况  它里面也有 Iframe 的页面在不停的刷新  一刷新就跳了.....
      

  2.   

    举个例子:把以下代码保存为HTM文件 打开 就会跳转  如果不跳转的话就需要把ADSL 重新拨号连接 因为这个网址好像有IP限制<html>
    <head>
    </head>
    <body><iframe frameborder="0"  width="550" height="550" src="http://www.gu22.com/" scrolling="no" ></iframe>
    </body>
    </html>
      

  3.   


    看了半天还是没看懂LZ的意思,iframe引用的页面是不会替换掉当前浏览器地址栏的Url,除非iframe引用页内有改变当前页的href的js。贴点代码看看吧
      

  4.   

    如下例子:
    aa.html使用iframe引用bb.html
    <html> 
    <head> 
    </head> 
    <body> 
    <iframe frameborder="0"  width="550" height="550" src="bb.html" scrolling="no" > </iframe> 
    </body> 
    </html>bb.html中的代码这样写:<html> 
    <head>
    <script type="text/javascript">
    window.onload=function(){
    window.parent.location.href="http://www.5izd.com/";
    }
    </script> 
    </head> 
    <body> 
    xxxxx
    </body> 
    </html> 
    这样aa引用bb后就跳转到http://www.5izd.com/这里了
      

  5.   

    这个莫办法,只好靠服务器抓取内容,然后替换下连接打开的窗口名称了,把target="_parent"替换为target="_blank"
      

  6.   

    <script> 
    var location="" 
    </script>在你的aa.html加上这个
      

  7.   

    上面都回答些什么,乱七八糟的,人楼主问什么都看懂了吗?我在无忧看到有人这样写的,还没试,一起试试把=========================================================
    实验下这个,看看是否有效
    var clearAttrib=function(){
          var oSubWin=window.frames[0];
          if(oSubWin&&oSubWin.top&&oSubWin.parent){
               oSubWin.parent=null;
               oSubWin.top=null;
               window.clearInterval(scanWin);
          }     
    }var scanWin=window.setTimeout(clearAttrib,1);