web-dev-qa-db-fra.com

Meilleure façon de convertir le nom du mois en mois en JS? (Jan = 01)

Je veux juste convertir Jan à 01 (format de date)

Je peux utiliser array() mais je cherche un autre moyen ...

Toute suggestion?

18
l2aelba

Juste pour m'amuser, j'ai fait ceci:

function getMonthFromString(mon){
   return new Date(Date.parse(mon +" 1, 2012")).getMonth()+1
}

Bonus: il prend également en charge les noms de mois complets :-D Ou la nouvelle version améliorée qui renvoie simplement -1 - changez-le pour renvoyer l’exception si vous le souhaitez (au lieu de renvoyer -1):

function getMonthFromString(mon){

   var d = Date.parse(mon + "1, 2012");
   if(!isNaN(d)){
      return new Date(d).getMonth() + 1;
   }
   return -1;
 }

Sry pour toutes les modifications - prendre de l'avance sur moi-même

58
Aaron Romine

Autrement;

alert( "JanFebMarAprMayJunJulAugSepOctNovDec".indexOf("Jun") / 3 + 1 );
38
Alex K.

Si vous ne voulez pas de tableau, pourquoi pas un objet?

var months = {
    'Jan' : '01',
    'Feb' : '02',
    'Mar' : '03',
    'Apr' : '04',
    'May' : '05',
    'Jun' : '06',
    'Jul' : '07',
    'Aug' : '08',
    'Sep' : '09',
    'Oct' : '10',
    'Nov' : '11',
    'Dec' : '12'
}
17
Paul S.

J'ai l'habitude de faire une fonction:

function getMonth(monthStr){
    return new Date(monthStr+'-1-01').getMonth()+1
}

Et appelez ça comme:

getMonth('Jan');
getMonth('Feb');
getMonth('Dec');
6
Akhil Sekharan

Une autre façon de faire la même chose

month1 = month1.toLowerCase();
var months = ["jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec"];
month1 = months.indexOf(month1);
6
Vikas Hardia

Si vous utilisez moment.js:

moment().month("Jan").format("M");
5
chinupson
function getMonthDays(MonthYear) {
  var months = [
    'January',
    'February',
    'March',
    'April',
    'May',
    'June',
    'July',
    'August',
    'September',
    'October',
    'November',
    'December'
  ];

  var Value=MonthYear.split(" ");      
  var month = (months.indexOf(Value[0]) + 1);      
  return new Date(Value[1], month, 0).getDate();
}

console.log(getMonthDays("March 2011"));
2
Muzafar Hasan

Voici un autre moyen:

// Months are in Spanish
var currentMonth = 1
var months = ["ENE", "FEB", "MAR", "APR", "MAY", "JUN", 
              "JUL", "AGO", "SEP", "OCT", "NOV", "DIC"];

console.log(months[currentMonth - 1]);
1
Erick Garcia
var monthNames = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];

puis appelez simplement monthNames [1] qui sera en février

Ainsi, vous pouvez toujours faire quelque chose comme

  monthNumber = "5";
  jQuery('#element').text(monthNames[monthNumber])
1

Voici une version modifiée de la réponse choisie:

getMonth("Feb")
function getMonth(month) {
  d = new Date().toString().split(" ")
  d[1] = month
  d = new Date(d.join(' ')).getMonth()+1
  if(!isNaN(d)) {
    return d
  }
  return -1;
}
1
Chris Martin

Voici une simple fonction de doublure

//ECHMA5
function GetMonth(anyDate) { 
   return 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'.split(',')[anyDate.getMonth()];
 }
//
// ECMA6
var GetMonth = (anyDate) => 'Jan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec'.split(',')[anyDate.getMonth()];
0
Liran BarNiv