JavaScript String - metodo anchor ()
Descrizione
Questo metodo crea un'ancora HTML che viene utilizzata come destinazione ipertestuale.
Sintassi
La sua sintassi è la seguente:
string.anchor( anchorname )
Dettagli degli attributi
anchorname - Definisce un nome per l'ancora.
Valore di ritorno
Restituisce la stringa con il tag di ancoraggio.
Esempio
Prova il seguente esempio.
<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>
Produzione
<a name = "myanchor">Hello world</a>