Get first and last date of current month with Java

2019-01-02 14:54发布

Possible Duplicate:
Calculate last day of month in JavaScript
What is the best way to determine the number of days in a month with JavaScript?

As title says, I'm stuck on finding a way to get the first and last date of the current month with JavaScript or jQuery, and format it as:

For example, for November it should be :

var firstdate = '11/01/2012';
var lastdate = '11/30/2012';

2条回答
看风景的人
2楼-- · 2019-01-02 15:10

I fixed it with Datejs

This is alerting the first day:

var fd = Date.today().clearTime().moveToFirstDayOfMonth();
var firstday = fd.toString("MM/dd/yyyy");
alert(firstday);

This is for the last day:

var ld = Date.today().clearTime().moveToLastDayOfMonth();
var lastday = ld.toString("MM/dd/yyyy");
alert(lastday);
查看更多
旧人旧事旧时光
3楼-- · 2019-01-02 15:27

Very simple, no library required:

var date = new Date();
var firstDay = new Date(date.getFullYear(), date.getMonth(), 1);
var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0);

or you might prefer:

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);

EDIT

Some browsers will treat two digit years as being in the 20th century, so that:

new Date(14, 0, 1);

gives 1 January, 1914. To avoid that, create a Date then set its values using setFullYear:

var date = new Date();
date.setFullYear(14, 0, 1); // 1 January, 14
查看更多
登录 后发表回答