根据此文档,http://jqueryui.com/demos/datepicker/#option-altFormat
我可以为用户设置不同的日期格式,以及实际发送到服务器的不同格式.
但是,两者似乎都显示相同的格式.
这是我的代码:
$("#joindate").datepicker({ dateFormat: $.datepicker.TIMESTAMP,altFormat: 'yy-mm-dd' });
并且,我希望用户看到yy-mm-dd格式,并使用我的发布请求将时间戳发送到服务器.我已经切换了altFormat和dateFormat的值,但是我在(textBox和$_POST)中都得到了yy-mm-dd,或者两者都得到了时间戳.
这有解决方法吗?
解决方法
我想你必须读这个
The dateFormat to be used for the
altField option. This allows one date
format to be shown to the user for
selection purposes,while a different
format is actually sent behind the
scenes. For a full list of the
possible formats see the formatDate
function
参考: