Metodo JavaScript String - fixed ()
Descrizione
Questo metodo fa sì che una stringa venga visualizzata con un carattere a passo fisso come se fosse in un tag <tt>.
Sintassi
La sua sintassi è la seguente:
string.fixed( )
Valore di ritorno
Restituisce la stringa con <tt> etichetta.
Esempio
Prova il seguente esempio.
<html>
<head>
<title>JavaScript String fixed() Method</title>
</head>
<body>
<script type = "text/javascript">
var str = new String("Hello world");
alert(str.fixed());
</script>
</body>
</html>
Produzione
<tt>Hello world</tt>