数据范围选择器 select 开始和结束日期
Data range picker to select start and end dates
我正在寻找一个日期范围选择器,第一次点击是 select 开始日期,然后刷新日历,第二次点击是 select 结束日期。我发现的所有日期游侠选择器都有两个日历,开始日期和结束日期同时为 select。
有没有人做过这样的事情。
如有任何建议或帮助,我们将不胜感激。
提前致谢
我正在使用 react-day-picker,它是高度可定制的。或者试试 airbnb,有点重,消耗更高 CPU
请检查,我想这些方法中的一种会对你有所帮助,
注意:我不知道在 Whosebug 上是否禁止发布第三方 link,如果是,请让我知道删除下面的 link,
我想你正在找这个。
$( 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>
我正在寻找一个日期范围选择器,第一次点击是 select 开始日期,然后刷新日历,第二次点击是 select 结束日期。我发现的所有日期游侠选择器都有两个日历,开始日期和结束日期同时为 select。
有没有人做过这样的事情。
如有任何建议或帮助,我们将不胜感激。
提前致谢
我正在使用 react-day-picker,它是高度可定制的。或者试试 airbnb,有点重,消耗更高 CPU
请检查,我想这些方法中的一种会对你有所帮助,
注意:我不知道在 Whosebug 上是否禁止发布第三方 link,如果是,请让我知道删除下面的 link,
我想你正在找这个。
$( 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>