Get month name from Date

前端 未结 30 3319
情歌与酒
情歌与酒 2020-11-22 00:16

How can I generate the name of the month (e.g: Oct/October) from this date object in JavaScript?

var objDate = new Date(\"10/11/2009\");
30条回答
  •  野的像风
    2020-11-22 00:52

    If you're using jQuery, you're probably also using jQuery UI, which means you can use $.datepicker.formatDate().

    $.datepicker.setDefaults( $.datepicker.regional[ "nl" ] );   // dutch
    $.datepicker.formatDate( "dd MM yy", objDate );
    

提交回复
热议问题