我的表单中有一个日期时间字段:
<input type="text" class="form-control datepicker" required />
$('.datepicker').datetimepicker({
datepicker: true,
timepicker: true,
lang: 'pl'
});
我表单中的每个字段都需要属性。当我尝试使用未实现的必填字段提交表单时,每个字段都会返回html5验证消息,但datetimepicker除外。
任何人都可以告诉我,为什么jQuery datetimepicker不支持基本的html5验证?有没有办法避免这个错误?
答案 0 :(得分:0)
检查一下......
我已经测试过了。验证工作..
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Test HTML5 with Date Picker</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker();
} );
</script>
</head>
<body>
<form action="#" method="post">
<p>Name: <input type="text" id="name" required></p>
<p>Date: <input type="text" id="datepicker" required></p>
<input type="submit" value="Submit" />
</form>
</body>
</html>