我遇到了jqueryui datepicker的问题,我在div上有一个内联的datepicker,numberOfMonths = 3,showOtherMonths = true,当一个月有6个星期的月份时,它也有6周,即使它也是不应该,这个额外的一周属于下个月,这里是我正在谈论的图像: docs
这是我的日期选择代码:
jQuery("#datepicker").datepicker({
dateFormat: "dd/mm/yy",
numberOfMonths: 3,
showCurrentAtPos: 1,
firstDay: 1,
showWeek: true,
showOtherMonths: true,
selectOtherMonths: true,
defaultDate: '20/05/2016',
});
#datepicker{
max-width: 100%;
width: 100%;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.0/jquery.min.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" rel="stylesheet"/>
<div id="datepicker"></div>
我想知道是否有人已经处理了这个因为我没有找到关于这个问题的任何信息,我试图在加载日期选择器后删除额外的tr周但我更愿意寻求更好的解决方案
非常感谢您的回复。