简体   繁体   中英

How to convert dateTime format in javascript

我如何将datetime 5/8/2011 12:00:00 AM (m / d / yyyy)转换为dd-MMM-yyyy,如JavaScript中08-May-201108-May-2011

This link is a good resource you can use for.

http://blog.stevenlevithan.com/archives/date-time-format

Alternatively, you need to get the individual part and concatenate them as needed like below.

var now = new Date();
var hour        = now.getHours();
var minute      = now.getMinutes();
var second      = now.getSeconds();
var monthnumber = now.getMonth();
var monthday    = now.getDate();
var year        = now.getYear();

String myOutput = monthday + "-" + monthnumer + "-" + year;

To get the month name instead of month number, you need to define an array like below

var arrMonths = new Array ("Jan","Feb"....};

   String myOutput = monthday + "-" + arrMonths[monthnumer-1] + "-" + year;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM