<a href="1.asp" target="x1">1</a><br>
 <a href="2.asp" target="x2">2</a><br>
 <a href="3.asp" target="x3">3</a><br>
 <a href="4.asp" target="x4">4</a><br>
 <a href="5.asp" target="x1">5</a><br>
 <a href="6.asp" target="x2">6</a><br>
.....

解决方案 »

  1.   

    <script language="JavaScript">
    <!--
    var win=new Array(3)
    function oWin(o){
    var j=0
    for(i=0;i<win.length;i++){
    if(win[i]){
    if(!win[i].closed)
    j++;continue;
    }
    }
    if(j==win.length){
    win[0].close();
    win[0]=window.open(o.href)
    }
    else
    win[j]=window.open(o.href)
    return false
    }
    //-->
    </script>
     <a href="1.asp" onclick="return(oWin(this))">1</a><br>
     <a href="2.asp" onclick="return(oWin(this))">2</a><br>
     <a href="3.asp" onclick="return(oWin(this))">3</a><br>
     <a href="4.asp" onclick="return(oWin(this))">4</a><br>
     <a href="5.asp" onclick="return(oWin(this))">5</a><br>
     <a href="6.asp" onclick="return(oWin(this))">6</a><br>
      

  2.   

    多谢 nolonely(月令人孤-[我只需要一颗星]) 的方法,已经基本能实现