本文介绍了如何设置在datetimepicker中突出显示的默认时间?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个datetimepicker,我需要将默认时间设置为始终为8 AM。如果用户单击datetimepicker,则突出显示的默认时间应为8AM。用户可以相应地更改时间。
我尝试过:
I have a datetimepicker and I need to set the default time to be always 8 AM. If a user clicks on the datetimepicker, the default time highlighted should be 8AM. User can change the time accordingly.
What I have tried:
$('#SPA_SD_START_DT').datetimepicker({
step: 30,
format: 'Y/m/d H:i',
defaultDate: "",
ignoreReadonly: true,
minDate: new Date(),
setDate:mindate()
});
function mindate(){
var mindte = new Date(new Date().setHours(8, 00, 00));
return mindte;
}
推荐答案
这篇关于如何设置在datetimepicker中突出显示的默认时间?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!