ExtJS 日期处理
计算是否在日期范围内
console.log(Ext.Date.between(new Date('07/01/2022'), new Date('05/01/2022'), new Date('12/01/2022')));
获得一个月的最后一天日期
console.log(Ext.Date.getLastDateOfMonth(new Date('05/20/2022')));
本文来自博客园,作者:重庆熊猫,转载请注明原文链接:https://www.cnblogs.com/cqpanda/p/16992311.html