我一直在使用 jquery datepicker,它工作正常,直到我在日期文本框上使用自定义验证器和必填字段验证器。我注意到它没有关闭日期选择。我需要一个提示,如何在选择日期后手动关闭我的日期选择器?
function bindPicker() {
$("input[type=text][id*=Date]").datepicker({
changeMonth: true,
changeYear: true,
yearRange: "-100:+0",
showOn: "both",
buttonImage: "../images/Calender.png",
buttonImageOnly: true,
dateFormat: "dd-M-yy"
});
}