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">
請告知