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

获取当月的某天

时间:2014-12-18 13:22:31      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:style   blog   ar   io   color   sp   on   div   log   

Tools.getMonthDate = function(type) {
    var res = false,
        today = new Date(),
        year = today.getFullYear(),
        month = today.getMonth() + 1,
        splitor = ‘-‘

    month = Tools.DateUtil._fillUpData(month)

    switch(type) {
        case ‘today‘: 
            res = year + splitor + month + splitor + Tools.DateUtil._fillUpData(today.getDate())
            break;
        case ‘first‘: 
            res = year + splitor + month + splitor + ‘01‘
            break;
        case ‘last‘: 
            var date = new Date(year, month, 0)
            res = year + splitor + month + splitor + date.getDate()
            break;
        default:break;   
    }

    return res
}

 

获取当月的某天

标签:style   blog   ar   io   color   sp   on   div   log   

原文地址:http://www.cnblogs.com/javawer/p/4171363.html

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