JavaScript String - metodo link ()
Descrizione
Questo metodo crea un collegamento ipertestuale HTML che richiede un altro URL.
Sintassi
La sintassi per il metodo link () è la seguente:
string.link( hrefname )
Dettagli attributo
hrefname- Qualsiasi stringa che specifica l'HREF del tag A; dovrebbe essere un URL valido.
Valore di ritorno
Restituisce la stringa con il tag <a>.
Esempio
Prova il seguente esempio.
<html>
<head>
<title>JavaScript String link() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
var URL = "http://www.tutorialspoint.com";
alert(str.link( URL ));
</script>
</body>
</html>
Produzione
<a href = "http://www.tutorialspoint.com">Hello world</a>