我正在使用Bootstrap的datepicker 1.7.1版https://bootstrap-datepicker.readthedocs.io/en/v1.7.1/,我需要查看是否可以解析以下格式的自定义输入字符串:“ mmddyyyy”,即“ 02192019”。不幸的是,这对项目来说是一个硬性要求,他们不想使用斜杠或任何东西来划定日期。另外,日历选择器也需要保留,这就是为什么我要使用日期选择器开始的原因。我查看了Bootstrap日期选择器文档,但该格式似乎仅影响日期的显示方式,而不影响其解析方式。
$('#due_date').datepicker({
orientation: "bottom auto",
autoclose: true,
forceParse: false,
format: "mmddyyyy",
todayHighlight: true
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>