如何使用 jquery 将“2020-10-08 09:38:08”转换为 2020 年 3 月格式
How to convert "2020-10-08 09:38:08" into March, 2020 format using jquery
$.datepicker.formatDate('M dd', date)
我试过了,但它给我错误
jquery-ui.js:8924 Uncaught TypeError: date.getDate is not a function
formatDate
方法需要一个 Date
实例。
如果您从那个特定的字符串开始,您可以轻松地将其转换为 ISO 8601 格式,然后将其解析为 Date
实例
const date = "2020-10-08 09:38:08"
const dateInstance = new Date(date.replace(" ", "T"))
const formatted = $.datepicker.formatDate('M dd', dateInstance)
$.datepicker.formatDate('M dd', date)
我试过了,但它给我错误
jquery-ui.js:8924 Uncaught TypeError: date.getDate is not a function
formatDate
方法需要一个 Date
实例。
如果您从那个特定的字符串开始,您可以轻松地将其转换为 ISO 8601 格式,然后将其解析为 Date
实例
const date = "2020-10-08 09:38:08"
const dateInstance = new Date(date.replace(" ", "T"))
const formatted = $.datepicker.formatDate('M dd', dateInstance)