Convert date into dd/MM/yyyy format in JQuery
I am getting selected date as in Thu Oct 14 2010 00:00:00 GMT 05开发者_运维技巧30 (India Standard Time)
format. I want to convert this in dd/MM/yyyy
format. What have to do in jQuery?
if you want more powerfull date formatting, you can use date format function written by Steven Levithan here
var date = dateFormat(new Date("Thu Oct 14 2010 00:00:00 GMT 0530 (India Standard Time)"), 'dd/mm/yyyy');
精彩评论