在我的laravel 5.7 /刀片服务器/ jQuery 3 / Bootstrap 4.1应用程序中 我从这里https://gijgo.com/datepicker/configuration使用2个日期选择器,并设置format属性:
$('#check_in_datepicker').datepicker({ // uiLibrary: 'bootstrap',
uiLibrary: 'bootstrap4',
iconsLibrary: 'fontawesome',
showOtherMonths: true,
selectOtherMonths: true,
format: 'dd mmmm, yyyy'
});
我知道我的日期显示为“ 2019年1月25日”,这是我期望的值,但是我需要根据需要以javascript格式读取此值: 1)检查客户第一日期是否小于第二日期 2)将选定的数据以“ YYYY-MM-DD”格式保存在mysql中
如果此gijgo / datepicker /有可能(我没有找到)在客户端或Java上转换日期,那么有一些不错的工具吗?
$('#check_in_datepicker')。val() 返回字符串文本为“ 2019年1月25日” ...
谢谢!