<script language="JavaScript">
function makeRemote() {
remote = window.open("","lienhu","width=350,height=400");
remote.location.href="go.htm";
}
</script><body>
<a href= "javascript:makeRemote()">remote</a>
</body>

解决方案 »

  1.   

    <script language="JavaScript">
    function makeRemote() {
    remote = window.open("","这里加名字","width=350,height=400");
    remote.location.href="go.htm";
    }
    </script><body>
    <a href= "javascript:makeRemote()">remote</a>
    </body>remote = window.open("链接","这里加名字","width=350,height=400");同名页面不能重复打开~~~~~~~~名字随便写一个~不空这就可以了这样就只能打开一个了
      

  2.   

    给他起个名字,这样他就只能打开一个了,他是最小化后再打开,一般不会跳出来,在打开后加上:
     名称.focus();
    试试看