我在同一页面上显示两个Datepickers时遇到问题。应该显示一个像这样的隐藏的身体
,另一个应该是常规的日期选择器。
为了实现第一个功能,我这样做:
$('.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');
有没有人知道如何实现这个目标?
由于
更新
这是我现在拥有的fiddle
答案 0 :(得分:2)
我终于使用此代码达到了可接受的解决方案:
$('#startDate').focusin(function() {
$('.ui-datepicker-calendar').hide();
});
$('#startDate').focusout(function() {
$('.date-picker').datepicker('close');
$('.ui-datepicker-calendar').show();
});
并完全删除css。
这是工作fiddle
答案 1 :(得分:1)
在JS中 $( 'UI的日期选择日历'。)隐藏()。 $( 'UI-日期选择日历')显示();
在CSS中
$('.ui-datepicker-calendar').css('visibility', 'hidden');
$('.ui-datepicker-calendar').css('visibility', 'visible');
答案 2 :(得分:-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>