Date

1.获取当前自己电脑时间:

eg:var time=new Date(),(不能做重要的用途)

2.其他:

getFullYear():获取年

getMonth():获取月

getDate():获取日期

getDay():获取星期(0-6,代表周日--周六)

getHours():获取小时

getMinutes():获取分钟

getSeconds():获取秒

getMilliseconds():获取毫秒

getTime():获取距离1970.1.1午夜(00:00)之间的毫秒差

你可能感兴趣的:(Date)