-1

我的表单中有一个日期时间字段:

<input type="text" class="form-control datepicker" required />

$('.datepicker').datetimepicker({
   datepicker: true,
   timepicker: true,
   lang: 'pl'
});

我表单中的每个字段都具有必需的属性。当我尝试使用未填写的必填字段提交表单时,每个字段都返回 html5 验证消息,除了 datetimepicker。

任何人都可以告诉我,为什么 jQuery datetimepicker 不支持基本的 html5 验证?有没有办法避免这个错误?

4

1 回答 1

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>
于 2017-05-16T12:58:37.650 回答