<script type="text/javascript"> var curMonth = new Date(); function initDate() { var month = curMonth.getFullYear() + ‘年‘ + (curMonth.getMonth() + 1) + ‘月‘; document.getElementById(‘month_i_FillSubmitStatus‘).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>
时间: 2024-11-06 19:57:07