Formatting the date time with Javascript

后端 未结 12 2330
暗喜
暗喜 2020-11-27 07:36

I have a date/time string like 2012-01-13 04:37:20 but I want to convert it to dd-mm-yyyy hh:mm, how can i do this?

I am using the followin

12条回答
  •  感情败类
    2020-11-27 07:43

    With Jquery, you steal datepicker's feature like that:

    $.datepicker.formatDate( "dd-M-yy", new Date())

提交回复
热议问题