我的js文件中有这段代码var date = new Date($('#datetimepicker').val());
。它适用于Chrome浏览器,但拒绝在Mozilla和Internet Explorer中工作。谁有类似的经验可以提供更多的亮点并提供解决方案。
基本上我想从用户输入的字段中获取日期值。 Mozilla输出invalid date
答案 0 :(得分:0)
我正在使用datepicker
我在datepicker.js文件format: "yyyy MM dd hh:ii"
中添加了可接受的日期格式,如下所示。它运作良好
$('#datetimepicker').datetimepicker({
format: "yyyy MM dd hh:ii",
autoclose: true,
todayBtn: true,
pickerPosition: "bottom-left",
todayHighlight: true,
keyboardNavigation: true,
showMeridian: true,
startDate: new Date()
});