JavaScript String - metodo fontsize ()
Descrizione
Questo metodo fa sì che una stringa venga visualizzata nella dimensione specificata come se fosse in un file <font size = "size"> etichetta.
Sintassi
La sua sintassi è la seguente:
string.fontsize( size )
Dettagli attributo
size - Un numero intero compreso tra 1 e 7, una stringa che rappresenta un numero intero con segno compreso tra 1 e 7.
Valore di ritorno
Restituisce la stringa con il tag <font size = "size">.
Esempio
Prova il seguente esempio.
<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>
Produzione
<font size = "3">Hello world</font>