且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何启用jQuery内联datePicker的过去日期?

更新时间:2023-01-29 11:54:25

您只需查看其他们网站上的实时示例.

You can just check out their documentation for the appropriate option or other live examples from their website.

使用演示示例回到主题:

Going back to the topic, using their demo example:

$('#inline-3')
    .datePicker(
        {
            inline:true,
            startDate:'01/01/2000' // first selectable date is 1st Jan 2000
        }
    );