使用Date()获取日期
getMonth()+1得到当前月份
1 var ndate = new Date(); 2 var nmonth = ndate.getMonth()+1;
弹窗显示
alert("当前月份:"+nmonth+"月");
控制台输出
console.log("当前月份:"+nmonth+"月");
页面显示
document.write("当前月份:"+nmonth+"月");
getMonth()的返回值是 0(1月) 到 11(12月)之间的一个整数,返回的是索引值,所以要加1。