开发者

Convert date into dd/MM/yyyy format in JQuery

开发者 https://www.devze.com 2023-01-20 07:24 出处:网络
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

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');
0

精彩评论

暂无评论...
验证码 换一张
取 消