在javascript中如何获取今天的日期, 系统时间并显示?
或者
使用javascript日期和时间函数!
方法 | 示例代码 | 结果 | 说明 |
getDate() | exd = new Date(); exd.getDate(); | getDate() 方法返回您当前系统日期中的天数。 其范围为 1 到 31。 | |
getUTCDate() | exd = new Date(); exd.getUTCDate(); | getUTCDate() 方法返回 UTC 日期中的天数。 UTC 是国际标准时间。 | |
getMonth() | exd = new Date(); exd.getMonth(); | getMonth() 方法返回您系统日期中的月份。 其范围是从 1 到 12. 1 是1月, 12 是12月。 | |
getUTCMonth() | exd = new Date(); exd. getUTCMonth(); | getUTCMonth() 方法返回您系统日期中的 UTC 时间中的月份。 | |
getDay() | exd = new Date(); exd.getDay(); | getDay() 方法返回您系统日期为一周中的星期几。 其返回范围为从 1 到 7. 1 为星期日, 2 是星期一, 到 7 为星期六。 | |
getUTCDay() | exd = new Date(); exd.getUTCDay(); | getUTCDay() 方法返回您系统 UTC 日期是一周中的星期几。 | |
getHours() | exd = new Date(); exd.getHours(); | getHours() 方法返回您系统日期的小时。 该范围是 0 到 24. | |
getUTCHours() | exd = new Date(); exd.getUTCHours(); | getUTCHours() 方法返回您系统 UTC 日期的小时。 [中国时间比国际标准时间(UTC)快 8 小时]. | |
getMinutes() | exd = new Date(); exd.getMinutes(); | getMinutes() 方法返回您系统日期的分钟。 其结果范围是 0 到 59。 | |
getUTCMinutes() | exd = new Date(); exd. getUTCMinutes(); | getUTCMinutes() 方法返回您系统 UTC 日期的分钟。 | |
getSeconds() | exd = new Date(); exd.getSeconds(); | getSeconds() 方法返回您系统日期的分钟。 其结果范围是 0 到 59。 | |
getUTCSeconds() | exd = new Date(); exd. getUTCSeconds(); | getUTCSeconds() 方法返回您系统 UTC 日期的秒钟。 | |
getMilliseconds() | exd = new Date(); exd.getMilliseconds(); | getMilliseconds() 方法返回您当前系统时钟的毫秒数。 | |
getTime() | exd = new Date(); exd.getTime(); | - | 结果: getTime() 方法返回自 1970 年 1 月 1 日起到当前系统时间的毫秒数。 |
getYear() | exd = new Date(); exd.getYear(); | getYear() 方法返回自 1900 开始的当前时间的年份。 | |
getFullYear() | exd = new Date(); exd.getFullYear(); | getFullYear() 方法返回当前系统日期中的完整年份。 | |
toGMTString() | exd = new Date(); exd.toGMTString(); | toGMTString() 方法返回格林尼治标准时间(GMT)格式的日期、时间。 |