JavaScript String - méthode anchor ()

La description

Cette méthode crée une ancre HTML qui est utilisée comme cible hypertexte.

Syntaxe

Sa syntaxe est la suivante -

string.anchor( anchorname )

Détails des attributs

anchorname - Définit un nom pour l'ancre.

Valeur de retour

Renvoie la chaîne ayant la balise d'ancrage.

Exemple

Essayez l'exemple suivant.

<html>
   <head>
      <title>JavaScript String anchor() Method</title>
   </head>
   
   <body>   
      <script type = "text/javascript">
         var str = new String("Hello world");
         alert(str.anchor( "myanchor" ));
      </script>      
   </body>
</html>

Production

<a name = "myanchor">Hello world</a>