如何在我的日期选择器上启用未来年份?
How can I enable future years on my datepicker?
我在网络开发方面真的很菜鸟,我在我的项目中使用 TailwindCSS 和 AlpineJS,我需要允许用户在我的日期选择器上选择未来年份和当前年份,这样用户就可以选择 2020 年, 2021, 2022,..., 日期。
这是我到目前为止在波纹管代码片段中所做的:
`https://codepen.io/fernandorcoelho/pen/BazXwjX?editors=1010`
实际上,您需要从 next arrow
中删除一些逻辑。这是您 next arrow
.
的开场白
我已将此逻辑添加到您的 button
@click="if (month == 11) {month=0; year++} else {month++};
<button type="button" class="inline-flex p-1 transition duration-100 ease-in-out rounded-full cursor-pointer hover:bg-gray-200 focus:outline-none" @click="if (month == 11) {month=0; year++} else {month++}; getNoOfDays()">
我在网络开发方面真的很菜鸟,我在我的项目中使用 TailwindCSS 和 AlpineJS,我需要允许用户在我的日期选择器上选择未来年份和当前年份,这样用户就可以选择 2020 年, 2021, 2022,..., 日期。
这是我到目前为止在波纹管代码片段中所做的:
`https://codepen.io/fernandorcoelho/pen/BazXwjX?editors=1010`
实际上,您需要从 next arrow
中删除一些逻辑。这是您 next arrow
.
我已将此逻辑添加到您的 button
@click="if (month == 11) {month=0; year++} else {month++};
<button type="button" class="inline-flex p-1 transition duration-100 ease-in-out rounded-full cursor-pointer hover:bg-gray-200 focus:outline-none" @click="if (month == 11) {month=0; year++} else {month++}; getNoOfDays()">