<html> 
  <head> 
    <title> </title> 
    <script   language="javascript"> 
        function   gotoShow(mylink){ 
 alert(mylink.innerHTML); 
  

    </script> 
  </head> 
  <body> 
    <a   href="#"   id="linkName"   text="nihao"   onClick="gotoShow(this);"> 超链接1 </a> 
    <a   href="#"   id="linkName"   text="dajiahao"   onClick="gotoShow(this);"> 超链接2 </a> 
  </body> 
</html>