0

我在同一页面上显示两个 Datepicker 时遇到问题。应该显示一个隐藏的身体像这样

在此处输入图像描述

另一个应该是常规的日期选择器。

为了实现第一个功能,我这样做:

$('.date-picker').datepicker( {
  changeMonth: true,
  changeYear: true,
  showButtonPanel: true,
  dateFormat: 'MM yy'
});

然后通过使用 css 我隐藏了身体:

.ui-datepicker-calendar {
    display: none !important;
}

但是当我想显示第二个日期选择器时,我无法覆盖该 css 样式。

我试过了

$('.ui-datepicker-calendar').css('display', '');

我什至尝试完全删除样式属性,但仍然没有运气。

$('.ui-datepicker-calendar').removeAttr('style');

有谁知道如何实现这一目标?

谢谢

更新:

这是我现在所拥有

4

3 回答 3

2

我终于使用以下代码达成了可接受的解决方案:

            $('#startDate').focusin(function() {
                $('.ui-datepicker-calendar').hide();
            });
            $('#startDate').focusout(function() {
                $('.date-picker').datepicker('close');
                $('.ui-datepicker-calendar').show();
            });

并完全删除css。

这是工作小提琴

于 2013-05-21T11:47:50.547 回答
1

你能试一下吗

在 JS $('.ui-datepicker-calendar').hide(); $('.ui-datepicker-calendar').show();

在 CSS 中

$('.ui-datepicker-calendar').css('visibility', 'hidden');
$('.ui-datepicker-calendar').css('visibility', 'visible');
于 2013-05-21T10:58:18.820 回答
-1
I have two fields.May be it help u:-

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Select a Date Range</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#from" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#to" ).datepicker( "option", "minDate", selectedDate );
}
});
$( "#to" ).datepicker({
defaultDate: "+1w",
changeMonth: true,
numberOfMonths: 3,
onClose: function( selectedDate ) {
$( "#from" ).datepicker( "option", "maxDate", selectedDate );
}
});
});
</script>
</head>
<body>
<label for="from">From</label>
<input type="text" id="from" name="from" />
<label for="to">to</label>
<input type="text" id="to" name="to" />
</body>
</html>
于 2013-05-21T11:45:34.437 回答