Hi I am working on internationalizing my site. Currently I am using jQuery-Plugin "daterangepicker.jQuery.js" How can I use this plugin to internationalize date format for countries other than USA? Any immediate help is greatly appreciated. Thanks
问问题
2731 次
3 回答
0
这很简单:
$(function() {
$("#datepicker").datepicker({dateFormat: 'yy-mm-dd'});
});
将 yy-mm-dd 更改为您想要的格式。
于 2013-03-13T13:48:40.833 回答
0
DateRangePicker(现在?)使用moment.js进行日期和时间处理 - 包括日期和时间的格式。
于 2014-11-09T23:17:16.767 回答
0
看起来这个插件使用了dateFormat
与datepicker.jquery.js
. 您可以在此处找到日期格式的文档:http: //docs.jquery.com/UI/Datepicker/%24.datepicker.formatDate
于 2012-12-02T02:20:04.613 回答