jquery-ui-datepicker – 删除jQuery UI Datepicker中的minDate / maxDate限制

前端之家收集整理的这篇文章主要介绍了jquery-ui-datepicker – 删除jQuery UI Datepicker中的minDate / maxDate限制前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
一个简单的问题,但我似乎无法找到答案.

我限制了jQuery Datepicker中的日期范围:

$( "#MyDatepicker" ).datepicker( "option","minDate",new Date())

有没有办法删除日期范围的所有限制?

解决方法

试试这个$(“#MyDatepicker”).datepicker(“option”,“minDate”,null).

来自JQuery文档关于datepicker minDate选项

Set a minimum selectable date via a Date object or as a string in the current dateFormat,or a number of days from today (e.g. +7) or a string of values and periods (‘y’ for years,‘m’ for months,‘w’ for weeks,‘d’ for days,e.g. ‘-1y -1m’),or null for no limit.

原文链接:https://www.f2er.com/jquery/179071.html

猜你在找的jQuery相关文章