在 jQuery datepicker 中设置最小日期 [英] Setting min date in jQuery datepicker

查看:27
本文介绍了在 jQuery datepicker 中设置最小日期的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想将我的 jQuery 日期选择器中的最小日期设置为 (1999-10-25).所以我尝试了下面的代码它不起作用.

Hi I want to set min date in my jQuery datepicker to (1999-10-25). So I tried the below code it's not working.

$(function () {
    $('#datepicker').datepicker({
        dateFormat: 'yy-mm-dd',
        showButtonPanel: true,
        changeMonth: true,
        changeYear: true,
        showOn: "button",
        buttonImage: "images/calendar.gif",
        buttonImageOnly: true,
        minDate: new Date(1999, 10 - 1, 25),
        maxDate: '+30Y',
        inline: true
    });
});

如果我将最小年份更改为 2002 以上,它会正常工作,但如果我指定最小年份小于 2002(如上面的示例 1999),它只会显示到 2002.
我正在使用 jquery-1.7.1.min.jsjquery-ui-1.8.18.custom.min.js.

If I change the min year to above 2002 than it will work fine but if I specify min year less than 2002 (like above example 1999), it will show only up to 2002.
I am using jquery-1.7.1.min.js and jquery-ui-1.8.18.custom.min.js.

推荐答案

$(function () {
    $('#datepicker').datepicker({
        dateFormat: 'yy-mm-dd',
        showButtonPanel: true,
        changeMonth: true,
        changeYear: true,
yearRange: '1999:2012',
        showOn: "button",
        buttonImage: "images/calendar.gif",
        buttonImageOnly: true,
        minDate: new Date(1999, 10 - 1, 25),
        maxDate: '+30Y',
        inline: true
    });
});

刚刚添加了年份范围选项.应该可以解决问题

Just added year range option. It should solve the problem

这篇关于在 jQuery datepicker 中设置最小日期的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆