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

Easyui获取上个月最后一天的日期,以及获取当前时间的前一天日期

时间:2017-04-11 11:59:01      阅读:340      评论:0      收藏:0      [点我收藏+]

标签:form   box   var   UI   日期   方式   获取   color   date   

//获取上一个月最后一天的日期
    lastDate = function(date){
        var day = date.getDate() > 9?(date.getDate()-1):"0" + (date.getDate()-1);
        var month = (date.getMonth() + 1) > 9?(date.getMonth() + 1):"0"+(date.getMonth() + 1);
        return date.getFullYear() + month + day;
        
    }
1 //获取上一天的日期
2     formatterDate = function(date){
3         var year = date.getFullYear();
4         var month = (date.getMonth() + 1) > 9?(date.getMonth()):"0"+(date.getMonth());
5         var day = new Date(year,month,0);
6         return date.getFullYear() + month + day.getDate();
7         
8     }

调用方式:

$(‘#cjrq‘).datebox(‘setValue‘,formatterDate(new Date()));

 

Easyui获取上个月最后一天的日期,以及获取当前时间的前一天日期

标签:form   box   var   UI   日期   方式   获取   color   date   

原文地址:http://www.cnblogs.com/qadyyj/p/6692277.html

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