如果选择2月,则应该使用“ jQuery日期下拉”显示29天

时间:2018-10-30 11:04:08

标签: jquery datetimepicker jquery-ui-droppable datedropper

在这里,我正在使用

  

jQuery日期下拉列表

我正在使用 displayformat 'mdy'。无论何时选择2月,我都希望显示29天。

1 个答案:

答案 0 :(得分:0)

使用jquery datepicker

它将在leap年自动显示2月29日

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery UI Datepicker - Default functionality</title>
  <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
  <link rel="stylesheet" href="/resources/demos/style.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>
 
<p>Date: <input type="text" id="datepicker"></p>
 
 
</body>
</html>

https://jqueryui.com/datepicker/