JavaScript String - méthode fontsize ()
La description
Cette méthode provoque l'affichage d'une chaîne dans la taille spécifiée comme si elle était dans un <font size = "size"> marque.
Syntaxe
Sa syntaxe est la suivante -
string.fontsize( size )
Détails des attributs
size - Un entier entre 1 et 7, une chaîne représentant un entier signé entre 1 et 7.
Valeur de retour
Renvoie la chaîne avec la balise <font size = "size">.
Exemple
Essayez l'exemple suivant.
<html>
<head>
<title>JavaScript String fontsize() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.fontsize( 3 ));
</script>
</body>
</html>
Production
<font size = "3">Hello world</font>