我正在寻找一个日期范围选择器,其中首先单击以选择开始日期,然后刷新日历,再单击一次以选择结束日期。我发现的所有日期范围选择器都有两个日历,可以同时选择开始日期和结束日期。
有人做过这样的事情吗?
任何建议或帮助将不胜感激。
预先感谢
答案 0 :(得分:0)
我正在使用react-day-picker,它是高度可定制的。或者尝试一下Airbnb,它有点笨重并且消耗更高的CPU
答案 1 :(得分:0)
请检查一下,我猜这些方法之一可以帮助您
注意:我不知道是否在stackoverflow上禁止发布第三方链接,如果是这样,请让我知道删除以下链接,
答案 2 :(得分:0)
我认为您正在寻找这个。
$( function() {
$( "#fromDate" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 1,
onClose: function( selectedDate ) {
$("#toDate").datepicker("option", "minDate", selectedDate);
}
});
$( "#toDate" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 1,
onClose: function( selectedDate ) {
$( "#fromDate" ).datepicker( "option", "maxDate", selectedDate );
}
});
} );
<!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>
</head>
<body>
<p>From: <input type="text" id="fromDate"></p>
<p>To: <input type="text" id="toDate"></p>
</body>
</html>