moment.js, how to get day of week number

前端 未结 5 739
臣服心动
臣服心动 2020-12-09 00:53

I have a moment date object, and want to get the selected day number (0-6) or (1-7).

I tried this, but it doesn\'t work

var aaa = moment(date).day();         


        
5条回答
  •  粉色の甜心
    2020-12-09 00:58

    From the docs page, notice they have these helpful headers

    http://momentjs.com/docs/#/get-set/weekday/
    (I didn't see them at first)

    With header sections for:

    • Date of Month
    • Day of Week
    • etc

    .

      var now = moment();
      var day  = now.day();
      var date = now.date(); // Number
    

提交回复
热议问题