如何以mm格式从当前日期检索月份? (即“05”)

这是我当前的代码:

var currentDate = new Date();
var currentMonth = currentDate.getMonth() + 1;

最佳答案

if (currentMonth < 10) { currentMonth = '0' + currentMonth; }

关于javascript - 在JavaScript中以mm格式获取月份,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2878184/

10-10 00:50