在timepicker的输入字段中,我最初只需要placeholder
,我决定将defaultTime
设为false:
<input type="text" class="timepicker" placeholder="Enter time">
<script>
$('.timepicker').timepicker({
defaultTime:false
});
</script>
但是在将默认时间设置为false后,每当我点击向上和向下箭头更改时间时,hour
值就会变为负值。在文档中,我发现这个问题没有任何帮助。我如何摆脱负面价值?任何帮助将不胜感激。
答案 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
});