我正在使用适用于 iOS 的电话间隔日期选择器插件,该插件运行良好,但在 iOS7 升级后无法选择未来日期。这是我的js代码,
// Handling for iOS and Android
$('.appointmentTime').on('click', function(e) {
var currentField = $(this);
window.plugins.datePicker.show((function() {
var o = {
date: new Date(),
mode: 'time', // date or time or blank for both
allowOldDates: true
};
if (myConfig.deviceType === myConfig.deviceTypeEnum.IOS) {
o.allowFutureDates = true;
}
return o;
})(), function(returnDate) {
var selectedDate;
selectedDate = new Date(returnDate);
currentField.blur();
});
}