启用/禁用特定日期

发布于 2024-10-21 22:10:44 字数 294 浏览 4 评论 0原文

可能的重复:
jQuery UI 可以吗日期选择器可以禁用周六和周日(以及节假日)吗?

我将从数据库中获取一组日期。我必须只启用 jQuery 日历中的那些日期。我该怎么做?

Possible Duplicate:
Can the jQuery UI Datepicker be made to disable Saturdays and Sundays (and holidays)?

i will get a set of dates from the database. i have to enable only those dates in jQuery calendar. How can i do it ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

朮生 2024-10-28 22:10:44

您可以使用这个 jQuery 插件,它利用 jQuery-UI 的日期选择器

http://balupton .com/sandbox/jquery-sparkle/demo/#eventcalendar

只需查询数据库并返回此格式的 JSON 对象

{
    "entries": [
        {
            "id": 1,
            "title": "My First Entry",
            "start": "2010-07-14 11:11:00",
            "finish": "2010-07-14 14:23:18",
            "user": {
                "name": "Joe"
            }
        },
        {
            "id": 2,
            "title": "My Second Entry",
            "start": "2010-07-14 11:11:00",
            "finish": "2010-07-15 14:23:18",
            "user": {
                "name": "Joe"
            }
        }
    ]
}

,然后将其作为选项添加到插件即可:

$eventCal.EventCalendar({
        // Ajax Variables
        /** The JSON variable that will be return on the AJAX request which will contain our entries */
        ajaxEntriesVariable: 'entries',
        /** The AJAX url to request for our entries */
        ajaxEntriesUrl: './eventcalendar.json'
});

You could use this jQuery plugin which makes use of jQuery-UI's date picker

http://balupton.com/sandbox/jquery-sparkle/demo/#eventcalendar

Just query your database and return a JSON object in this format

{
    "entries": [
        {
            "id": 1,
            "title": "My First Entry",
            "start": "2010-07-14 11:11:00",
            "finish": "2010-07-14 14:23:18",
            "user": {
                "name": "Joe"
            }
        },
        {
            "id": 2,
            "title": "My Second Entry",
            "start": "2010-07-14 11:11:00",
            "finish": "2010-07-15 14:23:18",
            "user": {
                "name": "Joe"
            }
        }
    ]
}

then just add it as an option to the plugin:

$eventCal.EventCalendar({
        // Ajax Variables
        /** The JSON variable that will be return on the AJAX request which will contain our entries */
        ajaxEntriesVariable: 'entries',
        /** The AJAX url to request for our entries */
        ajaxEntriesUrl: './eventcalendar.json'
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文