Easyui获取上个月最后一天的日期,以及获取当前时间的前一天日期
Posted vbvb520
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Easyui获取上个月最后一天的日期,以及获取当前时间的前一天日期相关的知识,希望对你有一定的参考价值。
//获取上一个月最后一天的日期
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获取上个月最后一天的日期,以及获取当前时间的前一天日期的主要内容,如果未能解决你的问题,请参考以下文章