1

我正在使用Keith-Wood 日期选择器,但 dateFormat 有问题。

当我使用以下脚本时,一切正常:

$('#popupDatepicker').datepick({dateFormat: "yyyy-mm-dd"});

(when a select a date the result is, for example, 2012-09-06)

但是当我包括语言设置时 dateFormat 被忽略

$('#popupDatepicker').datepick($.extend({dateFormat: "yyyy-mm-dd"}, $.datepick.regional['pt-BR']));

In this case, when a select a date the result is, for example, 09/06/2012 (corresponding to the default dateFormat mm/dd/yyyy).

有人有线索吗?

谢谢。

4

1 回答 1

2

我找到了一种解决方案(不确定它是否是最好的)但是......

$.datepick.setDefaults($.datepick.regional['pt-BR']);   
$('#popupDatepicker').datepick({dateFormat: "yyyy-mm-dd",altFormat: "yyyy-mm-dd"});
于 2012-09-06T10:22:19.237 回答