我有一个angular7应用程序,我需要在其中输入日期和时间。因此,您能建议我支持所有浏览器的库吗?我搜索了很多但没有一个可以与IE11一起使用的库
答案 0 :(得分:2)
使用 moment.js :所有浏览器均支持。
npm install moment --save # npm
例如:
moment().format('MMMM Do YYYY, h:mm:ss a'); // March 4th 2019, 5:01:34 pm
moment().format('dddd'); // Monday
moment().format("MMM Do YY"); // Mar 4th 19
moment().format('YYYY [escaped] YYYY'); // 2019 escaped 2019