Jquery datepicker年份变化
我使用 jquery 的 datepicker 作为字段来设置出生日期,同时显示默认选择器,它提供了滚动到每月日期的选项,听起来很乏味。有没有一种方法可以直接更改年份,而不是使用月份依次更改年份。
I am using datepicker of jquery for a field to set date of birth, while default picker is displayed which gives option to scroll to date monthly and sounds tedious. Is there a way by which I can change years directly rather using months to change the year in turn.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
日期选择器上有一个
changeYear
属性,您可以将其设置为true
。http://jqueryui.com/datepicker/#dropdown-month-year
这将呈现一个选择列表,您可以从中选择您想要的年份。
There's a
changeYear
property on the datepicker that you can set totrue
.http://jqueryui.com/datepicker/#dropdown-month-year
This will render a select list from which you can choose the year you'd like.
在 DataPicker 参数上插入
changeYear: true
。例子 :
Insert
changeYear: true
on your DataPicker parameter.Example :
设置
changeYear: true
,如下面的示例代码所示:有关更多选项,请参阅此处:https:// /jqueryui.com/datepicker/
Set
changeYear: true
, as shown in sample code below:Refer here for more options: https://jqueryui.com/datepicker/
changeYear
属性可让您启用年份下拉列表。使用yearRange
属性来控制年数 他们在下拉列表中看到,默认情况下为 -10 到 +10 年。原始文档的详细信息:
changeYear
property lets you enable a year dropdown. Also might be helpful to useyearRange
property to control number of years they see in the dropdown, by default it's from -10 to +10 years.Details from original documentation:
您可以通过使用日期选择器中的“changeYear”属性(请参阅:jQuery UI)来启用年份下拉列表目的。
You can enable a year dropdown by using the 'changeYear' property (see: jQuery UI) from the datepicker object.