在JQuery中将日期转换为dd / MM / yyyy格式

时间:2010-10-19 04:37:12

标签: javascript jquery datetime

我的选择日期为Thu Oct 14 2010 00:00:00 GMT 0530 (India Standard Time)格式。我想以dd/MM/yyyy格式转换它。在jQuery中需要做什么?

1 个答案:

答案 0 :(得分:8)

如果您想要更强大的日期格式,可以使用Steven Levithan here编写的日期格式函数

var date = dateFormat(new Date("Thu Oct 14 2010 00:00:00 GMT 0530 (India Standard Time)"), 'dd/mm/yyyy');