我正在使用一个 Jquery datepicker 元素,它允许用户只选择月份。
<style>
.ui-datepicker-calendar {
display: none;
}
</style>
上面的CSS工作正常。但是我传递了一个变量,该变量指示用户是否只能选择月份,或者他也可以选择日期。一种条件样式。
代码现在对我来说是这样的。
<head>
<link rel="stylesheet" href="styles/jquery-ui.css" />
<script language="javascript" type="text/javascript" src="js/jquery.js" ></script>
<script language="javascript" type="text/javascript" src="js/jquery-ui.js"></script>
</head>
//some code here
<label for="myDate">myDate</label>
<input type="text" id="myDate" name="myDate" />
//some more code
if(//myTest - This is to test if only months are to be shown)
{
$(".ui-datepicker-calendar").css("display", "none");
$('#myDate').datepicker( {
changeMonth: true,
changeYear: true,
changeDate: false, // This parameter is just for trial. On cross-checking with jquery-ui.js, I found there's no such property. :(
showButtonPanel: true,
dateFormat: 'MM yy',
});
//$(".ui-datepicker-calendar").css({display: 'none'}); -- This didn't work either
}
else
{
//normal code for a jquery datepicker
}
});
现在,上面的代码没有给我所需的输出。我需要执行:
$(".ui-datepicker-calendar").css("display", "none");
仅当上述代码中的 myTest 为真时。
换句话说,它仍在日期选择器中显示我不想显示的日期。
请帮忙。