示例代碼:
var currentDate = new Date();
var currentMonth = currentDate.getMonth() + 1;
console.log(currentMonth);
示例代碼:
var currentDate = new Date();
var currentMonth = currentDate.toLocaleString().match(/(\d{1,2})\/\d{1,2}\/\d{4}/)[1];
console.log(currentMonth);
示例代碼:
var currentMonth = moment().month() + 1;
console.log(currentMonth);
以上是三種常用的方法,可以根據實際需要選擇適合的方法來獲取當前月份。