Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个日期选择器,它正在显示一个日期。但问题是每个月都显示上个月的某些日子和下个月的某些日子,我不想显示。我希望每个月都应该显示该特定月份的天数。
例如,假设 Month JUNE,这里显示了MAY月的某些天和JULY 月的某些天,但我希望只JUNE显示天。我该怎么做?我正在尝试,但没有结果。
JUNE
这是小提琴:
http://jsfiddle.net/cBwEK/
您可以通过添加使其他月份值不可见:
.datepicker .otherMonth { visibility: hidden; }
到你的 CSS。请参阅更新的小提琴。