这个不用js就可以实现啊
<a href="#a1">连接文字</a>
....
<a name="a1">

解决方案 »

  1.   

    跳到另外一个超连接?<span onclick="location.href='another.html';" title="click me to see">hello</span>
      

  2.   

    <script language="javascript">
       function go(){
       window.open('index.asp','_self');
       }
    </script><a onclick="javascipt:go()">点击连接</a>
      

  3.   

    是不是这样啊
    <a href="1.htm" onclick="this.href='2.htm'"></a>