问答详情
源自:7-23 编程练习

年 月 日 的获取

 document.write(

      currentDate.getFullYear() + "年" + 

      (currentDate.getMonth() + 1) + "月" + 

      currentDate.getDate() + "日" + " " + 

      weekday[currentDate.getDay()]

      );

月份那里为什么加了1??

提问者:xibu 2016-02-18 09:27

个回答

  • qwerdsa22
    2016-02-18 10:26:33

    月份是从零开始算的

  • web新星
    2016-02-18 10:13:36

    月份是从零开始算的

  • cyansky
    2016-02-18 09:57:28

    月份是从0开始的

  • qq_小建_1
    2016-02-18 09:54:09

    y月份是从0开始的一直到11