<script type="text/javascript">
var curMonth = new Date();
function initDate() {
var month = curMonth.getFullYear() + '年' + (curMonth.getMonth() + ) + '月';
document.getElementById('month').innerHTML = month;
}
//上一月
function preMonth() {
var month = curMonth.getMonth() - ;
curMonth.setMonth(month);
initDate();
}
//下一月
function nextMonth() {
var month = curMonth.getMonth() + ;
curMonth.setMonth(month);
initDate();
}
//本月
function currentMonth() {
curMonth = new Date();
initDate();
}
</script>
相关文章
- 03-04【转】js实现上一题,下一题切换小demo
- 03-04python获取本天,本周,本月,本年,上一天,上一周,上一月,上一年的开始及结束日期
- 03-04【前端】JS/JQuery 获取当前元素的上/下一个兄弟级元素或其他元素的方法
- 03-04Mysql查询今天、昨天、7天、近30天、本月、上一月数据
- 03-04js计算当前日期上一个月和下一个月
- 03-042019年6月份Github上最热门的开源项目排行出炉,一起来看看本月上榜的开源项目
- 03-04js 本月,下一月,上一月
- 03-04mysql查询今天、昨天、本周、本月、上一月 、今年数据
- 03-04js实现点击按钮实现上一张下一张相册滚动效果
- 03-04mysql查询今天、昨天、7天、近30天、本月、上一月 数据