输入文本上的Jquery Datetimepicker事件

时间:2015-11-10 14:41:51

标签: javascript jquery datetimepicker

我正在使用Jquery DateTimePicker并且我在javascript库中添加了一个输入元素来更改时间,因为默认情况下我们可以使用滑块或选择框来更改时间。 / p>

我的输入效果很好(我有一个小时输入和另一个输入分钟)但我想在输入onChange或onKeyPress上添加一个事件来设置一些限制为“如果值>>那么值== 59“

    create: function(tp_inst, obj, unit, val, min, max, step){
    $('<input class="ui-timepicker-input" value="'+val+'" style="width:50%">')
        .appendTo(obj)
        .spinner({
            min: min,
            max: max,
            step: step,
            change: function(e,ui){ // key events
                    // don't call if api was used and not key press
                    if(e.originalEvent !== undefined)
                        tp_inst._onTimeChange();
                    tp_inst._onSelectHandler();
                },
            spin: function(e,ui){ // spin events
                    tp_inst.control.value(tp_inst, obj, unit, ui.value);
                    tp_inst._onTimeChange();
                    tp_inst._onSelectHandler();
                }
        });
    return obj;
},
options: function(tp_inst, obj, unit, opts, val){
    if(typeof(opts) == 'string' && val !== undefined)
        return obj.find('.ui-timepicker-input').spinner(opts, val);
    return obj.find('.ui-timepicker-input').spinner(opts);
},
value: function(tp_inst, obj, unit, val){
    if(val !== undefined)
        return obj.find('.ui-timepicker-input').spinner('value', val);
    return obj.find('.ui-timepicker-input').spinner('value');
}

我不知道在哪里可以在输入文本上添加我的事件。

1 个答案:

答案 0 :(得分:1)

好的我用这个解决了我的问题:

  $(document).on('keypress', '.ui-timepicker-input', function(ev){
    alert("ok");
  });

我希望这会有所帮助。