码迷,mamicode.com
首页 > 其他好文 > 详细

bobo 时间处理总结

时间:2014-07-11 23:18:27      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:blog   strong   cti   for   io   时间   

1.获取当前时间

1 function getNowTime() {
2 return new Date();
3 }

2.时间与天数相加

1 function getTimeAddDays(time, days) {
2 return new Date(time.getTime() + days * 24 * 60 * 60 * 1000);
3 }

3.获取并格式化日期:年-月-日

1  function getFormatDate(time) {
2 return time.getFullYear() + "-" + (time.getMonth() + 1) + "-" + time.getDate();
3 }

4.字符串转换为日期,字符串格式:2011-11-20

function convertToDate(strings) {
return new Date(Date.parse(strings.replace("-", "/")));
}

5.获取并格式化星期

1  var WEEKDAYS = ["周日", "周一", "周二", "周三", "周四", "周五", "周六"]; //星期
2
3 function getFormatWeek(time) {
4 return WEEKDAYS[time.getDay()];
5 }

6.时间比较

1  function compareTime(time1, time2) {
2 return time1.getTime() - time2.getTime();
3 }


7.计算两个日期之间相隔的天数

function getDays(time1, tiem2){
var day = 24*60*60*1000;
return (time1.getTime() - time2.getTime())/day;
}

bobo 时间处理总结,布布扣,bubuko.com

bobo 时间处理总结

标签:blog   strong   cti   for   io   时间   

原文地址:http://www.cnblogs.com/nice41/p/3832989.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!