jquery日历

时间:2010-12-28 15:09:26

标签: jquery calendar

我最近收到了一个调用两个链接日历的模型,我想知道是否有人有一个起点,我可以用jquery来实现这个目标。左边的日历是来自jquery ui的简单日期选择器,但是我不知道从哪里开始右边的那个,更不用说我可以链接它们了。有任何想法吗?谢谢大家!

www.jontakiff.com/calendar/calendar.html

3 个答案:

答案 0 :(得分:0)

有几个jQuery插件可以生成像Google日历这样的完整日历。例如,FullCalendar就是其中之一。

在jQuery网站上,你可以找到一个list of calendar plugins(实际上它是一个用日历标记的插件列表,但它仍然存在)。

答案 1 :(得分:0)

这看起来像你想要的:

http://arshaw.com/fullcalendar/

您可以使用.fullCalendar( 'changeView', viewName )在启动时将视图更改为周模式。并.fullCalendar( 'gotoDate', year [, month, [ date ]] )设置点击小日历上日历日期的日期。

您可以使用header属性为其他日历视图添加或删除按钮(如果您只想要周视图)。

答案 2 :(得分:0)

我不知道第二个日历是什么,但这就是这两个日历的关联方式。

$('.cal').datepicker({
   onSelect: function(dateText, inst) {
      // set the date of the second calendar to this date.
   }
});