在iOS设备中从一个页面导航到另一个页面时,始终显示DatePicker

时间:2016-09-30 04:30:08

标签: jquery ios cordova datepicker

我正在jQuery使用Cordova个插件,根据设备/浏览器显示datepicker(代码下方)。在iOS设备中,DatePicker在从一个页面导航到另一个页面时始终显示在应用程序的底部。但是这个代码在桌面浏览器,Android设备上运行良好。

events: {
"click #datePicker": "selectDate"
},

selectDate: function () {
   var self = this;
   var datePicker = window.plugins.datePicker;
   if (window.plugins && window.plugins.datePicker) {
    datePicker.show({
        date: this.currentDate,
            mode: 'date', // date or time or blank for both
            allowOldDates: true
            }, function (returnDate) {
            var newDate = new Date(returnDate);
            self.updateCurrentDate(newDate);
        });
}
        else {
            $('#dpDatePicker').datebox('open');
        }
},

让我知道如何处理这个问题?

0 个答案:

没有答案