因为我是 jQuery 新手,所以我有一个简单的问题要问专业用户。
- 如何在屏幕上打印日期选择器的日期?
- 如何将 datepicker 中的日期分配给一个变量,以便我以后可以使用它来将该日期与 mySQL 数据库操作一起使用。
任何帮助表示赞赏。
$(function() {
$("#from").datepicker({
defaultDate: "+1w",
changeMonth: true,
changeYear: true,
numberOfMonths: 1,
dateFormat: "yy/mm/dd",
showAnim: 'clip',
onClose: function(selectedDate) {
$("#to").datepicker("option", "minDate", selectedDate);
}
});
$("#to").datepicker({
defaultDate: "+1w",
changeMonth: true,
changeYear: true,
numberOfMonths: 1, maxDate: 0,
dateFormat: "yy/mm/dd",
showAnim: 'clip',
onClose: function(selectedDate) {
$("#from").datepicker("option", "maxDate", selectedDate);
}
});
});