使用jquery / js翻译其他语言的日期函数输出字符串?

时间:2013-06-21 11:53:02

标签: jquery datepicker date-format

有没有办法用jquery / js翻译其他语言的日期函数字符串的输出?

实际上我想翻译其他语言的月份字符串(德语,西班牙语,法语等)。

对齐

enter image description here

例如:

var D =  jQuery.datepicker.formatDate('MM dd yy', new Date());
alert(D);

英语输出: 2013年6月21日

但我想要其他语言的日期格式输出,例如:

French: juin 21 2013

German: Juni 21 2013

Spanish: junio 21 2013

Portuguese: junho 21 2013

我无法理解如何用其他语言翻译月份名称?

我在 PHP setlocale(LC_TIME, 'language_name'); strftime(format sting);)中找到了解决方案,但我需要在 jQuery或JS 中使用它?

所以伙计们,你可以建议我一个更好的解决方案。

0 个答案:

没有答案