使用datepicker
小部件时遇到一些问题。在我的应用程序中,我有一个用datetime
字段编辑文章的表单。当我选择编辑文章时,其创建日期将以
2013年9月22日
当我从datepicker
选择新日期时,字段中的日期变为
20132013-09-25
如何解决这个问题?
我这样叫datepicker
:
$('creationDate'),datepicker({
dateFormat: 'yyyy-mm-dd'
});
答案 0 :(得分:2)
根据jQuery UI Datepicker documentation,4位数年份格式的正确格式为
yy - year (four digit)
因此,更改此项将解决您的问题。
$('creationDate').datepicker({ // USE . instead of ,
dateFormat: 'yy-mm-dd' //This should fix your problem
});
仅供参考:不确定可能是拼写错误,creationDate
是ID还是CLASS?确保正确的选择器。