jQuery datepicker“dateFormat”和“altFormat”之间的区别

前端之家收集整理的这篇文章主要介绍了jQuery datepicker“dateFormat”和“altFormat”之间的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
根据此文档,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

参考:

http://api.jqueryui.com/datepicker/#option-altField

原文链接:https://www.f2er.com/jquery/177324.html

猜你在找的jQuery相关文章