我正在使用Kendo UI jQuery版本2019.2.514
,Spring Boot 2.1.6.RELEASE,Thymeleaf。我有代码片段
<input type="date" id="birthDate" name="birthDate" style="width: 100%;">
<script>
$("#birthDate").kendoDatePicker({
format: "dd/MM/yyyy"
});
</script>
我选择日期August 26th 1987
,但是在调试,检查对象,查询数据库时,日期变为1989-02-08
。怎么了?