您的当前位置:首页正文

js中MomentJS构造字符串

2024-08-01 来源:伴沃教育

1、可以传入字符串,首先会检查字符串的格式是否符合ISO 8601的格式,如果不符合,就调用new Date(string)来构造。

已知格式字符串

moment('2017-01-02');               //年月日
moment('2017-01-02 13');            //年月日 小时
moment('2017-01-02 13:12');         //年月日 小时分钟
moment('2017-01-02 13:12:52');      //年月日 小时分钟秒
moment('2017-01-02 13:12:52.123');  //年月日 小时分钟秒 毫秒

2、如果日期的格式不符合ISO 8601的格式,但是你知道输入的字符串的格式,也可以通过这种方式解析,解析的语法有四种格式:

moment(String, String);
moment(String, String, String);
moment(String, String, Boolean);
moment(String, String, String, Boolean);

以上就是js中MomentJS构造字符串的方法,大家可以就基本的内容先进行学习。更多js学习指路:

推荐操作环境:windows7系统、jquery3.2.1版本,DELL G3电脑。

显示全文