1 / 9

Date in Javascript

Date in Javascript. date. Le date sono oggetti Rappresentazione interna: numero di millisecondi dal 1° genn. 1970 Metodi per recuperare le parti di una data. Valori di tipo data. Metodo costruttore: Date() Senza argomenti, data e ora del computer var oggi = new Date();

zayit
Download Presentation

Date in Javascript

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Date in Javascript

  2. date • Le date sono oggetti • Rappresentazione interna: numero di millisecondi dal 1° genn. 1970 • Metodi per recuperare le parti di una data

  3. Valori di tipo data Metodo costruttore: Date() Senza argomenti, data e ora del computer var oggi = new Date(); Con un argomento stringa, data specifica var inizioLez = new Date("Oct 10 2005") var inizioLez = new Date("10 Oct 2005") var inizioLez = new Date("10 October 2005") var inizioLez = new Date("10-10-2005")

  4. Oggetto di tipo Data Una data è un oggetto che si compone di molte informazioni: Mon Nov 24 11:41:28 UTC+0100 2003 Le informazioni si possono estrarre con metodi dell’oggetto, come getHours, getMinutes, etc.

  5. Esempio var oggi = new Date(); var ora = oggi.getHours(); var minuti = oggi.getMinutes(); document.writeln("sono le ore <BR>"); document.write(ora + " e " + minuti + "minuti<BR>");

  6. Giorno della settimana • Metodo getDay() restituisce il numero d’ordine del giorno della settimana • Domenica corrisponde a 0, Lunedì a 1, Martedì a 2, etc. • oggi.getDay() vale 3 (Mercoledì) • Come fare per scrivere il giorno della settimana in italiano?

  7. Mesi • Metodo getMonth() restituisce il mese della data a partire da 0 • 0 - gennaio, 1 - febbraio e così via • oggi.getMonth()vale 10 (novembre) • Come fare per scrivere il mese in italiano?

  8. Cambiare una data • Metodi con "set" al posto di "get" • setDate(), setMonth, setFullYear(), setHours(), setMinutes(), ...

  9. Richiami di HTML - SELECT <SELECTNAME=“scelta”> <OPTIONVALUE=“primo”>messaggio1 <OPTIONVALUE=“secondo”>messaggio2 ... </SELECT> scelta.value contiene il valore corrispondente al messaggio scelto

More Related