我正在使用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).
有人有线索吗?
谢谢。