http://keith-wood.name/datepick.html
但我唯一能看到的就是获取整个时间月的警报
$(function() {
$('#popupDatepicker').datepick();
$('#inlineDatepicker').datepick({onSelect: showDate});
});
function showDate(date) {
alert('The date chosen is ' + date);
}
我想知道如何将它们分成喜欢
<input type="text" name="date" id="popupDatepicker"> When i select date here the fields in the hidden will change below
<input type="hidden" name="day">
<input type="hidden" name="month">
<input type="hidden" name="year">
请告知
答案 0 :(得分:0)
日期选择器的onselect
处理程序的问题在于使用您在日期选择器上放置的任何格式将日期作为字符串传递。
您可以使用$('#inlineDatepicker').datepicker('getDate')
获取代表所选日期的实际Date
对象。
您还可以使用$.datepicker.formatDate()
将该对象转换为其他字符串格式,或使用Date
对象自己的方法提取数值。