本帖最后由 storylok 于 2014-10-09 00:40:56 编辑

解决方案 »

  1.   


    <body>
    <p><a href="javascript:void(0);" onclick="gourl()">菜单1</a></p>
    <iframe name="left" width="400" height="400" src="about:blank"></iframe>
    <iframe name="right" width="400" height="400" src="about:blank"></iframe>
    <script type="text/javascript">
    function gourl(){
    window.left.location="http://www.baidu.com";
    window.right.location="http://www.so.com";
    }
    </script>
    </body>
      

  2.   


    如果不用js能不能够做到呢?只用frame
      

  3.   

    如果不用JS的话估计做不到,因为target只能设一个目标值。
      

  4.   


    我用js做了 但是加载进来的left里面还有导航 这里的js就无法运行了。