JavaScript String - méthode fontcolor ()

La description

Cette méthode entraîne l'affichage d'une chaîne dans la couleur spécifiée comme si elle était dans un <font color = "color"> marque.

Syntaxe

Sa syntaxe est la suivante -

string.fontcolor( color )

Détails des attributs

color - Une chaîne exprimant la couleur sous forme de triplet RVB hexadécimal ou de littéral de chaîne.

Valeur de retour

Renvoie la chaîne avec la balise <font color = "color">.

Exemple

Essayez l'exemple suivant.

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

Production

<font color = "red">Hello world</font>