我正在使用 Phonegap 构建一个 Android 应用程序,我发现了这个插件,我决定将它用于我的 datepicker 字段。我按照说明进行操作,但运行时遇到问题。
这是我的代码:
HTML:
<label for="schedule_start">Start date</label>
<input type="text" class="nativedatepicker" id="schedule_start" name="schedule[start_date]" value="{{start_date}}" required />
JS(我正在使用 Backbone.js)
FormView.prototype.defaultEvents = {
'focus .nativedatepicker': 'focusDatepicker'
};
// call when input focused
FormView.prototype.focusDatepicker = function(e) {
var currentField = $(this);
var myNewDate = Date.parse(currentField.val()) || new Date();
if(typeof myNewDate === "number"){ myNewDate = new Date (myNewDate); }
// Same handling for iPhone and Android
window.plugins.datePicker.show({
date : myNewDate,
mode : 'date', // date or time or blank for both
allowOldDates : true
}, function(returnDate) {
var newDate = new Date(returnDate);
currentField.val(newDate.toString("YYYY-MM-DD"));
// This fixes the problem you mention at the bottom of this script with it not working a second/third time around, because it is in focus.
currentField.blur();
});
};
创建包后,我添加了datePickerPlugin.js
to/assets/www/js/
和DatePickerPlugin.java
to 。/src/com/phonegap/plugin/
com.phonegap.plugin
我想我在调用 datePickerPlugin.js 时可能会遇到一些问题,因为我没有收到我在文件中放入的警报,但我不确定如何解决这个问题。
提前致谢。