单击向上和向下箭头时,Bootstrap timepicker变为负数

时间:2017-03-26 02:00:27

标签: jquery twitter-bootstrap timepicker

在timepicker的输入字段中,我最初只需要placeholder,我决定将defaultTime设为false:

<input type="text" class="timepicker" placeholder="Enter time">
<script>
$('.timepicker').timepicker({
    defaultTime:false
 });
</script>

但是在将默认时间设置为false后,每当我点击向上和向下箭头更改时间时,hour值就会变为负值。在文档中,我发现这个问题没有任何帮助。我如何摆脱负面价值?任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

我几周前经历了同样的问题,我通过在点击输入字段后设置时间来解决问题:

$(document).on("click",".timepicker",function(){
    var d = new Date();
    var current_time = moment(d).format('hh:mm A'); // time format with moment.js
    $(this).timepicker('setTime', current_time); // setting timepicker to current time
    $(this).val(current_time); // setting input field to current time
});