js 本月,下一月,上一月
<script type="text/javascript"> var curMonth = new Date(); function initDate() { var month = curMonth.getFullYear() + '年' + (curMonth.getMonth() + 1) + '月'; document.getElementById('month').innerHTML = month; } //上一月 function preMonth() { var month = curMonth.getMonth() - 1; curMonth.setMonth(month); initDate(); } //下一月 function nextMonth() { var month = curMonth.getMonth() + 1; curMonth.setMonth(month); initDate(); } //本月 function currentMonth() { curMonth = new Date(); initDate(); } </script>