我正在使用网站上的
Jquery datepicker来允许用户选择日期,并且想知道显示日期是否可能显示日期的英国格式,例如2012年9月22日在英国显示为22 / 09/2012同时采用美国格式的2012年9月22日
解决方法
试试这个:
$('#datepicker').datepicker({ dateFormat: 'dd-mm-yy' });
$.datepicker.formatDate( format,date,settings )
将日期格式化为具有指定格式的字符串值.
格式可以是以下组合:
d - day of month (no leading zero) dd - day of month (two digit) o - day of the year (no leading zeros) oo - day of the year (three digit) D - day name short DD - day name long m - month of year (no leading zero) mm - month of year (two digit) M - month name short MM - month name long y - year (two digit) yy - year (four digit) @ - Unix timestamp (ms since 01/01/1970) ! - Windows ticks (100ns since 01/01/0001) '...' - literal text '' - single quote anything else - literal text