以前给一个学校做一个系统,其中有个日程安排的功能。后来基于那个版本自做了个类似google日历的工具(现在的google日历已经变样了)。最近想把这个工具好好的重新写一下,在重写前,先把以前的代码给大家分享一下吧。

界面展示: 月视图

<script type="text/javascript" >
        cal_config({
            date:new Date(),
            contextPath:'calendar',
            language:'chinese',
            mode:'month'
        })  
   </script>   

 

javascript实现的google日历,beehive.calendar.js v0.1

周视图:

<script type="text/javascript" >

  cal_config({

    date:new Date(),

    contextPath:'calendar',

    language:'chinese',

    mode:'week'

  })  

</script>  

javascript实现的google日历,beehive.calendar.js v0.1

添加日程:

javascript实现的google日历,beehive.calendar.js v0.1

下载地址:

http://code.google.com/p/beehive-calendar/downloads/list

javascript实现的google日历,beehive.calendar.js v0.1

 最后

这个版本中的代码,还是很凌乱,曾经对于javascript 的理解太朦胧了,等待我的下一个版本吧。

相关文章:

  • 2022-12-23
  • 2021-12-05
  • 2021-12-04
  • 2021-04-22
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-07-27
  • 2022-12-23
  • 2021-09-13
  • 2022-12-23
  • 2021-11-25
  • 2022-12-23
  • 2021-08-08
相关资源
相似解决方案