String de JavaScript - método link ()

Descrição

Este método cria um link de hipertexto HTML que solicita outro URL.

Sintaxe

A sintaxe do método link () é a seguinte -

string.link( hrefname )

Detalhes de Atributo

hrefname- Qualquer string que especifica o HREF da tag A; deve ser um URL válido.

Valor de retorno

Retorna a string com a tag <a>.

Exemplo

Experimente o seguinte exemplo.

<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>

Resultado

<a href = "http://www.tutorialspoint.com">Hello world</a>