本文介绍了在jquery中获取当前月份的最后日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
需要使用jquery获取当月的最后日期。目前我有当月的第一天...请帮助
Hi,
Need to get last date of the month using jquery. Currently I have 1st day of the current month...Little help please with
var lastDay=
var dateObj = new Date();
var firstDay=(date.getDate(),1) + '/' + (date.getMonth() + 1) + '/' + date.getFullYear();
var lastDay=(date.getDate()) + '/' + (date.getMonth()+1) + '/' + date.getFullYear();
推荐答案
var date = new Date();
var firstDay = new Date(date.getFullYear(), date.getMonth(), 1);
var lastDay = new Date(date.getFullYear(), date.getMonth() + 1, 0);
var lastDayWithSlashes = (lastDay.getDate()) + '/' + (lastDay.getMonth() + 1) + '/' + lastDay.getFullYear();
alert(lastDayWithSlashes);
演示
[]
引用:
目前我有当月的第一天
所以你也可以在下个月的第一天...现在需要一天的时间,瞧!你有当月的最后一天......
So you can have the 1st day of the next month too...Now take a day away and voila! you have the last day of the current month...
这篇关于在jquery中获取当前月份的最后日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!