0

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">

请指教

4

1 回答 1

0

日期选择器的onselect处理程序的问题是使用您放在日期选择器上的任何格式将日期作为字符串传递。

您可以使用$('#inlineDatepicker').datepicker('getDate')来获取Date代表所选日期的实际对象。

您还可以使用$.datepicker.formatDate()将该对象转换为其他字符串格式,或使用该Date对象自己的方法来提取数值。

于 2012-05-20T11:14:52.990 回答