Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Returns the day-of-the-month value in a Date object using local time.
Syntax
dateObj.getDate()
Remarks
The required dateObj reference is a Date object.
To get the day-of-the-month value using Universal Coordinated Time (UTC), use the getUTCDate method.
The return value is an integer between 1 and 31 that represents the day-of-the-month value in the Date object.
The following example illustrates the use of the getDate method.
function DateDemo(){
var d;
var s = "Today's date is: ";
d = new Date();
s += (d.getMonth() + 1) + "/";
s += d.getDate() + "/";
s += d.getFullYear();
return(s);
}
Requirements
Applies To: Date Object (Windows Scripting - JScript)
Change History
Date |
History |
Reason |
|---|---|---|
March 2009 |
Replaced obsolete method in example code. |
Content bug fix. |
See Also
getUTCDate Method (Windows Scripting - JScript)
setDate Method (Windows Scripting - JScript)
setUTCDate Method (Windows Scripting - JScript)