在inedx.html中 
<a href="http://war.news.163.com/">军事 </a> 
<a href="http://news.163.com/">新闻 </a> 
等多个163的内容链接。 
在163.html中 
有 
<iframe src="http://www.163.com" height="4000" width="770" frameborder="0" allowtransparency="true" style="background-color=transparent" > </iframe> 
框架。 以上的军事,新闻 链接内容 都在163.html中iframe显示,如何实现呀?

解决方案 »

  1.   

    inedx.html中 
    <a href="#" onclick="location.href='163.htm?url=\http\:\/\/war\.news\.163\.com\/'">军事 </a>
    163.html中
    <script>
    window.onload=function(){
      var url=location.href;  url=url.split("=")[1];
      document.getElementById("f").src=url;  
    }
    </script>
    <body>
    <iframe id=f height="4000" width="770" frameborder="0" allowtransparency="true" style="background-color=transparent" > </iframe></body>
      

  2.   

    Mozilla Firefox中显示有问题
      

  3.   

    修改一下,看看还有问题吗?<a href="#" onmousedown="location.href='163.htm?url=http\:\/\/war\.news\.163\.com\/';return false;">军事 </a>