获取当前时间:
时间
js
var myDate = new Date(); //当前时间
年份
js
var year = myDate.getFullYear();
月份
js
var month = myDate.getMonth() + 1;
日
js
var day = myDate.getDate();
年份(2位)
js
myDate.getYear();
完整年份
(4位,1970-????)
js
myDate.getFullYear();
月份
(0-11,0代表1月)
js
myDate.getMonth();
日(1-31)
js
myDate.getDate();
星期X
(0-6,0代表星期天)
js
myDate.getDay();
时间戳
(从1970.1.1开始的毫秒数)
js
myDate.getTime();
小时数(0-23)
js
myDate.getHours();
分钟数(0-59)
js
myDate.getMinutes();
秒数(0-59)
js
myDate.getSeconds();
毫秒数(0-999)
js
myDate.getSeconds();
日期
js
myDate.getMilliseconds();
时间
js
var mytime=myDate.toLocaleTimeString();
日期与时间
js
myDate.toLocaleString( );
获取最近一周的日期
js
var oneDay = 1000 * 60 * 60 * 24; var lastDate = new Date(myDate - oneDay * 6); var lastYear = lastDate.getFullYear(); var lastMonth = lastDate.getMonth() + 1;
获取当前月的最后一天
js
var lastDay = lastDate.getDate(); var day = new Date(year ,month , 0); var lastdate = day.getDate();//当前月的最后一天
获取最近N个月的日期
js
var lastDate = new Date(myDate - oneDay * myDate.getDate()); lastDate = new Date(lastDate - N * oneDay * (lastDate.getDate() - 1)); var lastYear = lastDate.getFullYear(); var lastMonth = lastDate.getMonth() + 1; var lastDay = lastDate.getDate();
字符串转换为时间戳
js
var date="2014-12-06"; date = new Date(Date.parse(date.replace(/-/g, "/"))); date = date.getTime();
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。