View:
<div class="col-sm-6">
<input type="text" class="form-control timepicker" name="shiftStartTime" id="shiftStartTime" required parsley-maxlength="6" placeholder="Shift Start Time" />
</div>
脚本
<script type="text/javascript">
$(document).ready(function(){
$('.timepicker').wickedpicker();
});
</script>
控制器代码 :
$shiftstarttime = $this->input->post('shiftStartTime');
但它以"00:00:12"插入数据库。如何将其更改为 H:m:s 格式(即 12:05:10(
试试这个 它给你
的价值<input type="text" class="form-control timepicker" name="shiftStartTime" id="shiftStartTime" required placeholder="HH:MM:SS" />
脚本
<script type="text/javascript">
$('.timepicker').timepicker({
'timeFormat': 'H:i:s',
});
</script>
控制器代码
$shiftstarttime = $this->input->post('shiftStartTime');
确保数据库中的列类型是时间
首先,您需要确认在帖子中您获得正确的值,如果是,那么以下将为您工作
$input = $this->input->post('shiftStartTime');
$input = str_replace(" : ", ":", $input);
$shiftstarttime = date('H:i:s', strtotime($input));
首先,检查何时获取时间表单日期选择器,它以哪种形式出现。
否则,可以在控制器端专门更改格式,然后将该值分配给数据库对象。
试试这个,我希望它对你有用。
<script>
$(document).ready(function(){
$('.timepicker').timepicker({});
});
</script>