"messagerrec.htm","newRssb",...
不要rssb这个东东
两个取不同的名字

解决方案 »

  1.   

    两个都写在函数里:
    <script>
    function openLink(path){
      var wnd = window.open(path, "rssb", "scrollbars=no,resizable=no,width=450,height=260,menubar=no,top=300,left=210");
      wnd.focus();
    }
    </script>
    <a href="#" onclick="openLink('messagesen.html')">我的收信箱</a><a href="#" onclick="openLink('messagerec.html')">我的发信箱</a>或者在每个 onclick 里最后的 ) 后加上 .focus()
      

  2.   

    加.focus()解决了
    谢谢两位