`
giga_Zhang
  • 浏览: 155289 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

JavaScript日期对象方法

阅读更多

Date Object Methods
日期对象方法

FF: Firefox, N: Netscape, IE: Internet Explorer
FF:火狐,N:网景,IE

Method
方法Description
描述FFNIE
Date()Returns today's date and time
返回今天的日期和时间
123
getDate()Returns the day of the month from a Date object (from 1-31)
返回月中的第几天(1到31)
123
getDay()Returns the day of the week from a Date object (from 0-6)
返回一周中的第几天(0到6)
123
getMonth()Returns the month from a Date object (from 0-11)
返回月份数(0到11)
123
getFullYear()Returns the year, as a four-digit number, from a Date object
返回完整的年份数
144
getYear()Returns the year, as a two-digit or a four-digit number, from a Date object. Use getFullYear() instead !!
返回年份,可以是两位的或是四位的
123
getHours()Returns the hour of a Date object (from 0-23)
返回日期对象的小时数(0到23)
123
getMinutes()Returns the minutes of a Date object (from 0-59)
返回日期对象的分钟(0到59)
123
getSeconds()Returns the seconds of a Date object (from 0-59)
返回日期对象的秒(0到59)
123
getMilliseconds()Returns the milliseconds of a Date object (from 0-999)
返回毫秒(0到999)
144
getTime()Returns the number of milliseconds since midnight Jan 1, 1970
从1970年1月1号午夜到现在一共花去的毫秒数
123
getTimezoneOffset()Returns the difference in minutes between local time and Greenwich Mean Time (GMT)
本地时间和GMT相差多少分钟
123
getUTCDate()Returns the day of the month from a Date object according to universal time (from 1-31)
依据国际时间来得到月中的第几天(1到31)
144
getUTCDay()Returns the day of the week from a Date object according to universal time (from 0-6)
依据国际时间来得到现在是星期几(0到6)
144
getUTCMonth()Returns the month from a Date object according to universal time (from 0-11)
依据国际时间来得到月份(0到11)
144
getUTCFullYear()Returns the four-digit year from a Date object according to universal time
依据国际时间来得到完整的年份
144
getUTCHours()Returns the hour of a Date object according to universal time (from 0-23)
依据国际时间来得到小时(0-23)
144
getUTCMinutes()Returns the minutes of a Date object according to universal time (from 0-59)
依据国际时间来返回分钟(0到59)
144
getUTCSeconds()Returns the seconds of a Date object according to universal time (from 0-59)
依据国际时间来返回秒(0到59)
144
getUTCMilliseconds()Returns the milliseconds of a Date object according to universal time (from 0-999)
依据国际时间来返回毫秒(0到999)
144
parse()Takes a date string and returns the number of milliseconds since midnight of January 1, 1970
或得并返回自1970年1月1号凌晨到现在一共花掉了多少毫秒
123
setDate()Sets the day of the month in a Date object (from 1-31)
设置日
123
setMonth()Sets the month in a Date object (from 0-11)
设置月
123
setFullYear()Sets the year in a Date object (four digits)
设置年份
144
setYear()Sets the year in the Date object (two or four digits). Use setFullYear() instead !!
用setFullYear()来取代
123
setHours()Sets the hour in a Date object (from 0-23)
设置小时
123
setMinutes()Set the minutes in a Date object (from 0-59)
设置分钟
123
setSeconds()Sets the seconds in a Date object (from 0-59)
设置秒
123
setMilliseconds()Sets the milliseconds in a Date object (from 0-999)
设置毫秒
144
setTime()Calculates a date and time by adding or subtracting a specified number of milliseconds to/from midnight January 1, 1970123
setUTCDate()Sets the day of the month in a Date object according to universal time (from 1-31)
依据国际时间来设置日期
144
setUTCMonth()Sets the month in a Date object according to universal time (from 0-11)
依据国际时间来设置月
144
setUTCFullYear()Sets the year in a Date object according to universal time (four digits)
依据国际时间来设置年份
144
setUTCHours()Sets the hour in a Date object according to universal time (from 0-23)
依据国际时间来设置小时
144
setUTCMinutes()Set the minutes in a Date object according to universal time (from 0-59)
依据国际时间来设置分钟
144
setUTCSeconds()Set the seconds in a Date object according to universal time (from 0-59)
依据国际时间来设置秒
144
setUTCMilliseconds()Sets the milliseconds in a Date object according to universal time (from 0-999)
依据国际时间来设置毫秒
144
toSource()Represents the source code of an object
显示对象的源代码
14-
toString()Converts a Date object to a string
将日期对象转换为字符串
124
toGMTString()Converts a Date object, according to Greenwich time, to a string. Use toUTCString() instead !!
根据格林威治时间将Date[日期]对象转换为一个字符串。可以使用toUTCString()替代这种方法
123
toUTCString()Converts a Date object, according to universal time, to a string
根据通用时间将一个Date[日期]对象转换为一个字符串
144
toLocaleString()Converts a Date object, according to local time, to a string
根据本地时间将一个Date[日期]对象转换为一个字符串
123
UTC()Takes a date and returns the number of milliseconds since midnight of January 1, 1970 according to universal time
根据通用时间将日期计算为从1970年1月1日午夜至今所经过的时间(单位:毫秒)
123
valueOf()Returns the primitive value of a Date object
返回日期对象的原始值
124


Date Object Properties
日期对象属性

Property
属性Description
描述FFNIE 
constructorA reference to the function that created the object
所建立对象的函数参考
144
prototypeAllows you to add properties and methods to the object
能够为对象加入的属性和方法
134
0
0
分享到:
评论

相关推荐

    JavaScript核心对象参考手册

    1. **全局对象Global**: JavaScript中的全局对象提供了许多内置函数,如`Math`(数学运算)、`Date`(日期和时间操作)、`JSON`(JSON解析和序列化)等。全局变量默认会成为全局对象的属性。 2. **对象创建与原型...

    Javascript 日期对象Date扩展

    解析常用的中文日期并返回日期对象。 add--日期加减操作。[注:此函数在上传时还存在一个BUG。请下载后把此函数内的第一行"var regExp = /^\d+$/;" 改为 "var regExp = /^([+-])?\d+$/;", 要不然就做不了减法。] ...

    javaScript内置对象.doc

    - `getDay()`方法:返回日期对象的星期中的天数,范围是0到6,0表示周日。 - `getHours()`方法:返回日期对象的小时数,范围是0到23。 - `getMinutes()`方法:返回日期对象的分钟数,范围是0到59。 - `...

    javascript转换日期字符串为Date日期对象的方法.docx

    ### JavaScript 转换日期字符串为 Date 日期对象的方法 在 JavaScript 开发中,处理日期是非常常见的需求之一。很多时候,我们需要将用户输入或其他来源得到的日期字符串转换为 `Date` 对象,以便进行进一步的计算...

    javascript日期格式化

    在JavaScript中,`Date`对象提供了许多方法来获取日期和时间的不同部分,如`getFullYear()`、`getMonth()`(注意月份是从0开始的)、`getDate()`、`getHours()`等。例如: ```javascript console.log(date....

    javascript 日期数字文本格式化

    通常,这样的工具函数会提供类似于`formatDate`或`dateTimeToString`等方法,它们接受一个日期对象,并返回一个按照指定格式(如'YYYY-MM-DD'或'HH:mm:ss')的字符串。 例如,它可能包含以下代码: ```javascript ...

    javascript对象参考手册

    接下来,手册会深入讨论JavaScript内置对象,如Array、Date、Math、String等,这些对象提供了处理数组、日期、数学计算和字符串操作的常用功能。对于每个内置对象,都会详细阐述其核心方法和属性,帮助开发者更有效...

    javascript的日期空间源代码

    `getTime()`方法返回日期对象表示的毫秒数,`setTime()`方法接受一个毫秒值并更新日期对象。 当涉及到用户界面,特别是日期选择器控件时,JavaScript常常被用来创建交互式的日历组件。这种控件允许用户方便地选择...

    JavaScript日期控件02(日期选择器)

    这篇博客“JavaScript日期控件02(日期选择器)”可能是博主FantasyYong分享的一个关于自定义日期选择器的实现方法。日期控件在网页表单、事件预订、日程管理等场景中广泛应用,为用户提供友好的界面体验。 在...

    javascript 日期控件

    在JavaScript中,可以使用`new Date()`创建一个新的日期对象,或者使用`getDate()`, `getMonth()`, `getFullYear()`等方法获取当前日期的各个部分。如果需要设置日期,可以使用`setDate()`, `setMonth()`, `...

    javascript日期选择器,很强大

    JavaScript日期选择器是一种在网页上方便用户选择日期的交互组件,通常用于表单输入或事件调度等场景。在Web开发中,JavaScript提供了内置的Date对象,但为了提供更好的用户体验和更丰富的功能,开发者通常会使用...

    详细谈谈javascript的对象

    - `Date`对象:日期对象用于处理日期和时间。它允许获取和设置日期和时间的各个方面,例如年份(`getFullYear()`), 获取毫秒数(`getTime()`), 设置具体日期(`setFullYear()`), 获取星期(`getDay()`). 6. 对象字面量 ...

    javascript 日期组件

    1. **创建日期对象**: - `new Date()` 创建当前日期和时间。 - `new Date(dateString)` 根据日期字符串创建。 - `new Date(year, month, day, hours, minutes, seconds, milliseconds)` 根据参数创建指定日期。 ...

    时间日期JavaScript 选择时间日期

    1. **JavaScript内置日期对象** JavaScript提供了一个内置的`Date`对象,可以用来创建、操作和格式化日期。你可以通过`new Date()`来创建一个日期实例,或者通过传递年、月、日等参数来初始化特定日期。`Date`对象...

    即查即用-JavaScript核心对象参考手册.rar

    首先,JavaScript的核心对象包括全局对象、函数对象、数组对象、日期对象、正则表达式对象以及错误对象等。全局对象在任何作用域下都是可访问的,它是所有变量和函数的容器,例如`window`在浏览器环境中就是全局对象...

    JavaScript常用对象.md

    - **Date**:日期对象,用于处理日期和时间。 - **Number**:数值对象,用于处理数字。 - **Math**:数学对象,提供了一组数学常量和函数。 ##### 字符串对象(String) 字符串是不可变的序列,可以用来存储和操作...

    javascript日期输入文本框

    JavaScript日期输入文本框是网页开发中常见的一种交互元素,它允许用户在文本框中输入或选择日期。在JavaScript中,处理日期和时间通常涉及到`Date`对象和相关的函数。在这个主题下,我们将深入探讨如何创建一个...

    即用即查JavaScript核心对象参考手册附书光盘

    Date对象用于处理日期和时间,可以创建新的日期实例,获取年月日等信息。 3. **函数** 函数是可重用的代码块,JavaScript中的函数可以作为值传递,也可以作为对象属性。函数表达式、函数声明、箭头函数都是常见的...

    javascript 日期时间控件

    1. **创建日期对象**:你可以通过传递日期参数(如年、月、日、小时、分钟等)来创建一个`Date`对象,或者不传参数获取当前日期和时间。 ```javascript var date = new Date(); // 当前日期和时间 var ...

Global site tag (gtag.js) - Google Analytics