phonegap android datepicker插件不在第二个字段上工作

时间:2013-07-23 11:11:21

标签: android html5 plugins cordova datepicker

$('.nativedatepicker').focus(function(event) {
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("dd/MMM/yyyy"));

                // 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();
            });
        });

我有两个输入

我已经插入了这个,但是日期选择器然后在选择第二个字段后停止工作 请帮忙

0 个答案:

没有答案