Rumah > Artikel > hujung hadapan web > Date对象怎么使用
Date对象是JavaScript中的内置对象,可以用于处理日期和时间,包括天,月,年,小时,分钟,秒和毫秒。我们会使用new Date()创建日期对象,创建Date对象后,可以使用许多方法对其进行操作,本篇文章我们就来具体看看Date对象的使用方法。
我们先来使用new关键字来创建一个Date对象的实例
var my_date = new Date() var my_date = new Date(milliseconds); var my_date = new Date('date string'); var my_date = new Date(year, month[, date, hour, minute, second, millisecond]);
创建Date对象的实例后,可以从“my_date”变量访问该对象的所有方法。
Date构造函数中可以指定以下参数
无参数:如果构造函数中未指定参数,则Date对象将设置为当前日期和时间。
Milliseconds:毫秒可以指定为数字参数。日期对象将通过从1970年1月1日中午开始添加指定的数字毫秒来计算日期和时间
Date string:字符串参数将被视为日期,并将使用Date.parse方法进行解析。
Date参数的日期包括以下七个参数:
year:表示日期年份的数值。
month:表示日期月份的数字值。从1月0开始到12月11日
date:表示日期的数字值(可选)
hour:表示一天中小时的数字值(可选)。
minute:表示分钟的数值(可选)。
second:表示秒的数字值(可选)
millisecond:表示毫秒的数值(可选)
我们来看具体示例
日期:
<html> <body> <script type="text/javascript"> var d = new Date() document.write(d.getDate()) document.write(".") document.write(d.getMonth() + 1) document.write(".") document.write(d.getFullYear()) </script> </body> </html>
浏览器上将显示当前日期为:2019.1.30
时间:
<html> <body> <script type="text/javascript"> var d = new Date() document.write(d.getHours()) document.write(":") document.write(d.getMinutes() + 1) document.write(":") document.write(d.getSeconds()) </script> </body> </html>
浏览器上显示当前时间为:14:40:43
还可以使用setDate,setHour等将日期或时间设置为日期对象。
本篇文章到这里就全部结束了,更多精彩内容大家可以关注php中文网的其他相关栏目教程!!!
Atas ialah kandungan terperinci Date对象怎么使用. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!