如何使用Javascripts获取上个月的开始日期和结束日期。
举个例子:
今天 - 2013年7月9日
我需要输出
上个月开始日期:2013年6月1日 上个月结束日期:2013年6月30日
答案 0 :(得分:5)
function f()
{
var date = new Date();
var firstDay = new Date(date.getFullYear(), date.getMonth()-1, 1);
var lastDay = new Date(date.getFullYear(), date.getMonth(), 0);
alert(firstDay+"==="+lastDay);
}