我想在提交表单时分开日期,月份和年份,我认为使用多个altfield可能是一个解决方案,但是,这不起作用。任何人都喜欢吗?非常感谢。
$(function() {
$( "#datepicker" ).datepicker({
altField: "#y, #m, #d",
altFormat: "yyyy, mm, dd"
});
});
<form action="#">
<input type="text" id="datepicker"><br />
<input type="text" name="y" />
<input type="text" name="m" />
<input type="text" name="d" />
<input type="submit" value="Go" />
</form>
答案 0 :(得分:1)
试试这个,demo
$(function() {
$("#mydate").datepicker({
onClose: function(dateText, inst) {
alert("Year = "+dateText.split('/')[2] + " Month = "+ dateText.split('/')[0] + " Day =" + dateText.split('/')[1]);
}
});
});