La funzione today() ritorna la data odierna nel formato "italiano canonico" GG/MM/AAAA rappresentando i giorni ed i mesi con due cifre e l'anno con quattro.
function today() {
var now = new Date();
var giorno = now.getDate();
var mese = (now.getMonth() + 1);
giorno = giorno + '';
mese = mese + '';
if (giorno.length == 1) { giorno = '0' + giorno; }
if (mese.length == 1) { mese = '0' + mese; }
return (giorno + '/' + mese + '/' + now.getUTCFullYear());
}
Nessun commento:
Posta un commento