js 本月,下一月,上一月

 <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>
上一篇:css3 倒影


下一篇:113、ScrollView滑动到了最底部