Moment.js日期格式

时间:2018-09-10 05:35:04

标签: momentjs

我想从 HTML 输入中转换以下日期: ""2018-09-10" to 10 September 2018

我该如何使用 momentjs

我最近得到的是 alert(moment("10-09-2018", "DD-MM-YYYY")); ,但它也会返回时间。

1 个答案:

答案 0 :(得分:0)

为满足您的需求,请使用以下代码:

const date = moment("10-09-2018", 'DD-MM-YYYY').format('D MMMM YYYY');

console.log(date);
<script src="https://momentjs.com/downloads/moment-with-locales.min.js"></script>

查看有关格式化here

的更多信息