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.
我正在使用日历控件。 是否可以在下拉列表中仅设置几年(当年和上一年)? 因为默认情况下它有年份列表(1900 - 2100)。
样品屏幕
我有使用 Jquery 的 Endup。这可能对某人有所帮助。
<script> $(function () { $("#datepicker").datepicker({ changeMonth: true, changeYear: true, yearRange: '-2:+0'}); }); </script>