非常简单,不需要库:
var date = new Date();var firstDay = new Date(date.getFullYear(), date.getMonth(), 1);var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0);
或者您可能更喜欢:
编辑var date = new Date(), y = date.getFullYear(), m = date.getMonth();var firstDay = new Date(y, m, 1);var lastDay = new Date(y, m + 1, 0);
一些浏览器会将20年视为两位数,因此:
new Date(14, 0, 1);
给出1914年1月1日。为避免这种情况,请创建一个Date,然后使用 setFullYear 设置其值:
var date = new Date();date.setFullYear(14, 0, 1); // 1 January, 14
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)