Date Object Methods
日期对象方法
FF: Firefox, N: Netscape, IE: Internet Explorer
FF:火狐,N:网景,IE
Method
方法Description
描述FFNIE
Date() Returns today's date and time
返回今天的日期和时间
getDate() Returns the day of the month from a Date object (from 1-31)
返回月中的第几天(1到31)
getDay() Returns the day of the week from a Date object (from 0-6)
返回一周中的第几天(0到6)
getMonth() Returns the month from a Date object (from 0-11)
返回月份数(0到11)
getFullYear() Returns the year, as a four-digit number, from a Date object
返回完整的年份数
getYear() Returns the year, as a two-digit or a four-digit number, from a Date object. Use getFullYear() instead !!
返回年份,可以是两位的或是四位的
getHours() Returns the hour of a Date object (from 0-23)
返回日期对象的小时数(0到23)
getMinutes() Returns the minutes of a Date object (from 0-59)
返回日期对象的分钟(0到59)
getSeconds() Returns the seconds of a Date object (from 0-59)
返回日期对象的秒(0到59)
getMilliseconds() Returns the milliseconds of a Date object (from 0-999)
返回毫秒(0到999)
getTime() Returns the number of milliseconds since midnight Jan 1, 1970
从1970年1月1号午夜到现在一共花去的毫秒数
getTimezoneOffset() Returns the difference in minutes between local time and Greenwich Mean Time (GMT)
本地时间和GMT相差多少分钟
getUTCDate() Returns the day of the month from a Date object according to universal time (from 1-31)
依据国际时间来得到月中的第几天(1到31)
getUTCDay() Returns the day of the week from a Date object according to universal time (from 0-6)
依据国际时间来得到现在是星期几(0到6)
getUTCMonth() Returns the month from a Date object according to universal time (from 0-11)
依据国际时间来得到月份(0到11)
getUTCFullYear() Returns the four-digit year from a Date object according to universal time
依据国际时间来得到完整的年份
getUTCHours() Returns the hour of a Date object according to universal time (from 0-23)
依据国际时间来得到小时(0-23)
getUTCMinutes() Returns the minutes of a Date object according to universal time (from 0-59)
依据国际时间来返回分钟(0到59)
getUTCSeconds() Returns the seconds of a Date object according to universal time (from 0-59)
依据国际时间来返回秒(0到59)
getUTCMilliseconds() Returns the milliseconds of a Date object according to universal time (from 0-999)
依据国际时间来返回毫秒(0到999)
parse() Takes a date string and returns the number of milliseconds since midnight of January 1, 1970
或得并返回自1970年1月1号凌晨到现在一共花掉了多少毫秒
setDate() Sets the day of the month in a Date object (from 1-31)
设置日
setMonth() Sets the month in a Date object (from 0-11)
设置月
setFullYear() Sets the year in a Date object (four digits)
设置年份
setYear() Sets the year in the Date object (two or four digits). Use setFullYear() instead !!
用setFullYear()来取代
setHours() Sets the hour in a Date object (from 0-23)
设置小时
setMinutes() Set the minutes in a Date object (from 0-59)
设置分钟
setSeconds() Sets the seconds in a Date object (from 0-59)
设置秒
setMilliseconds() Sets the milliseconds in a Date object (from 0-999)
设置毫秒
setTime() Calculates a date and time by adding or subtracting a specified number of milliseconds to/from midnight January 1, 1970 1 2 3
setUTCDate() Sets the day of the month in a Date object according to universal time (from 1-31)
依据国际时间来设置日期
setUTCMonth() Sets the month in a Date object according to universal time (from 0-11)
依据国际时间来设置月
setUTCFullYear() Sets the year in a Date object according to universal time (four digits)
依据国际时间来设置年份
setUTCHours() Sets the hour in a Date object according to universal time (from 0-23)
依据国际时间来设置小时
setUTCMinutes() Set the minutes in a Date object according to universal time (from 0-59)
依据国际时间来设置分钟
setUTCSeconds() Set the seconds in a Date object according to universal time (from 0-59)
依据国际时间来设置秒
setUTCMilliseconds() Sets the milliseconds in a Date object according to universal time (from 0-999)
依据国际时间来设置毫秒
toSource() Represents the source code of an object
显示对象的源代码
toString() Converts a Date object to a string
将日期对象转换为字符串
toGMTString() Converts a Date object, according to Greenwich time, to a string. Use toUTCString() instead !!
根据格林威治时间将Date[日期]对象转换为一个字符串。可以使用toUTCString()替代这种方法
toUTCString() Converts a Date object, according to universal time, to a string
根据通用时间将一个Date[日期]对象转换为一个字符串
toLocaleString() Converts a Date object, according to local time, to a string
根据本地时间将一个Date[日期]对象转换为一个字符串
UTC() Takes a date and returns the number of milliseconds since midnight of January 1, 1970 according to universal time
根据通用时间将日期计算为从1970年1月1日午夜至今所经过的时间(单位:毫秒)
valueOf() Returns the primitive value of a Date object
返回日期对象的原始值
分享到:
相关推荐
JavaScript之Date对象(源代码)JavaScript之Date对象(源代码)JavaScript之Date对象(源代码)JavaScript之Date对象(源代码)JavaScript之Date对象(源代码)JavaScript之Date对象(源代码)JavaScript之Date对象...
在JavaScript中,Date对象提供了一系列的方法来创建、修改和读取日期和时间。这篇文章将深入探讨Date对象的各个方面,帮助你更好地理解和应用这个对象。 1. Date对象简介 Date对象是用来表示特定日期和时间的实例...
Date对象有个getDay方法,它根据本地时间,返回一个具体日期中一周的第几天。返回值从0~6,分别对应周日~周六 getDay 0 1 2 3 4 5 6 星期几 周日 周一 周二 周三 周四 周五 周六 用到日期相关的需求时...
JavaScript中的Date对象是一...总之,JavaScript Date对象为我们提供了丰富的方法和功能,让我们能够在Web开发中处理复杂的日期时间问题。掌握这些知识点将帮助我们更好地进行Web编程,实现功能丰富、用户友好的应用。
在JavaScript中,Date对象的方法分为两种主要类型:本地时间和UTC(通用协调时)时间。本地时间指的是根据用户计算机所在的时区计算的时间,而UTC是一种全球统一的标准时间,与格林尼治平均时(GMT)相同。 创建...
1. **全局对象Global**: JavaScript中的全局对象提供了许多内置函数,如`Math`(数学运算)、`Date`(日期和时间操作)、`JSON`(JSON解析和序列化)等。全局变量默认会成为全局对象的属性。 2. **对象创建与原型...
### JavaScript 转换日期字符串为 Date 日期对象的方法 在 JavaScript 开发中,处理日期是非常常见的需求之一。很多时候,我们需要将用户输入或其他来源得到的日期字符串转换为 `Date` 对象,以便进行进一步的计算...
### JavaScript中Date对象的getDay方法使用指南 #### 一、getDay方法简介 在JavaScript中,`Date`对象提供了一系列的方法用于处理日期和时间。其中`getDay()`方法是其中一个非常实用的功能,它用于获取指定日期是...
JavaScript Date对象是JavaScript提供的用于处理日期和时间的一个内置对象。它允许你执行各种操作,比如获取当前日期和时间、计算日期之间的差异以及创建特定的日期对象。这篇文章通过实例分享了如何利用JavaScript ...
### JavaScript中Date对象的使用总结 #### 概述 JavaScript 的 `Date` 对象用于处理日期和时间。本文档详细介绍了 `Date` 对象的基本使用方法及其提供的多种实用功能,帮助开发者更好地理解和应用这一核心对象。 ...
#### 四、Date 对象方法 `Date`对象提供了一系列的方法来获取日期和时间的不同部分。 1. **getDay() 方法** `getDay()`方法返回一周中的某一天(0 表示周日,1 表示周一,以此类推)。例如: ```javascript ...
JavaScript Date(日期) 对象 日期对象用于处理日期和时间。 在线实例 使用 getFullYear() 获取年份。...我们提供 JavaScript Date 对象参考手册,其中包括所有可用于日期对象的属性和方法。JavaScript
Date对象扩展,包括常用中文日期格式解析、加减操作、日期差、周操作和季操作。具体扩展的方法如下: parseCHS--静态方法。解析常用的中文日期并返回日期对象。 add--日期加减操作。[注:此函数在上传时还存在...
JavaScript中的Date对象是用于处理日期和时间的核心构造函数,提供了丰富的功能来操作和展示日期。在JavaScript中,Date对象能够创建、格式化、比较以及计算日期。以下是对Date对象的详细解析: 1. 创建Date对象 -...
Date对象的方法提供了对日期和时间的多种操作,包括设置和获取年份、月份、日期、小时、分钟、秒等。 **2. OLE DATE类型** OLE DATE类型是一种用于表示日期时间的标准格式,主要用于COM组件之间以及COM组件与非COM...
- JavaScript处理日期和时间默认是以世界标准时间(UTC)为准,但是Date对象中还有很多方法提供当地时间(即客户端电脑设置的时间)的计算。 - 当创建一个日期对象时,年份通常要用四位数来避免混淆。 - 月份在...
3. **Date对象**: - `getDate()`方法:返回日期对象的月份中的天数,范围是1到31。 - `getDay()`方法:返回日期对象的星期中的天数,范围是0到6,0表示周日。 - `getHours()`方法:返回日期对象的小时数,范围是...
web前端JavaScript DATE 用法思维导图,
原生JavaScript中的Date对象是一个非常重要的内置对象,它提供了多种处理日期和时间的方法。本文将详细解析Date对象的构造函数用法、日期时间的表示以及一些相关的静态方法。 首先,Date对象是基于1970年1月1日...